1
0
Fork 0
mirror of https://codeberg.org/icewind/prometheus-mdns-rs.git synced 2026-06-03 18:04:11 +02:00

allow output to file

This commit is contained in:
Robin Appelman 2019-09-08 17:19:13 +02:00
commit 7916a2fc5f
3 changed files with 89 additions and 9 deletions

View file

@ -3,8 +3,10 @@ name = "prometheus-mdns-sd-rs"
version = "0.1.0"
authors = ["Robin Appelman <robin@icewind.nl>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
description = "mDNS service discovery for prometherus"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/icewind1991/prometheus-mdns-rs"
[dependencies]
mdns = { version = "0.3", git = "https://github.com/bkchr/mdns", branch = "tokio_rewrite" }
@ -12,4 +14,5 @@ futures = "0.1.28"
tokio = "0.1.21"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
maplit = "1.0"
maplit = "1.0"
atomicwrites = "0.2"