edge detector from git

This commit is contained in:
Robin Appelman 2020-01-25 14:58:53 +01:00
commit 28676e3abf
2 changed files with 4 additions and 2 deletions

4
Cargo.lock generated
View file

@ -630,6 +630,7 @@ dependencies = [
[[package]]
name = "prometheus-edge-detector"
version = "0.1.0"
source = "git+https://github.com/icewind1991/prometheus-edge-detector#2f2fc8615dc6573efbff03f32b854cb2bbcecb84"
dependencies = [
"err-derive 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
@ -649,7 +650,7 @@ dependencies = [
"main_error 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"maplit 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"mdns 0.3.1 (git+https://github.com/icewind1991/mdns?branch=async_await)",
"prometheus-edge-detector 0.1.0",
"prometheus-edge-detector 0.1.0 (git+https://github.com/icewind1991/prometheus-edge-detector)",
"reqwest 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
@ -1306,6 +1307,7 @@ dependencies = [
"checksum proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5"
"checksum proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "369a6ed065f249a159e06c45752c780bda2fb53c995718f9e484d08daa9eb42e"
"checksum proc-macro2 1.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "0319972dcae462681daf4da1adeeaa066e3ebd29c69be96c6abb1259d2ee2bcc"
"checksum prometheus-edge-detector 0.1.0 (git+https://github.com/icewind1991/prometheus-edge-detector)" = "<none>"
"checksum quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
"checksum rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"

View file

@ -5,7 +5,7 @@ authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018"
[dependencies]
prometheus-edge-detector = { version = "0.1", path = "../prometheus-edge-detector" }
prometheus-edge-detector = { version = "0.1", git = "https://github.com/icewind1991/prometheus-edge-detector" }
mdns = { version = "0.3", git = "https://github.com/icewind1991/mdns", branch = "async_await" }
tokio = { version = "0.2.4", features = ["macros", "time", "fs"] }
main_error = "0.1.0"