2022-12-07 14:35:12 +00:00
|
|
|
[package]
|
|
|
|
name = "d53"
|
|
|
|
description = "D53 is a dynamic DNS updater that sources information from Consul to route services to the correct place"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
async-trait = "0.1"
|
|
|
|
anyhow = "1.0.66"
|
|
|
|
futures = "0.3"
|
2022-12-11 14:46:48 +00:00
|
|
|
tracing = { version = "0.1.30" }
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2023-01-05 10:31:01 +00:00
|
|
|
df-consul = "0.2.0"
|
2022-12-07 14:35:12 +00:00
|
|
|
structopt = "0.3"
|
|
|
|
tokio = { version = "1.22", default-features = false, features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros", "sync", "signal", "fs"] }
|
|
|
|
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls-webpki-roots" ] }
|
|
|
|
serde = { version = "1.0.107", features = ["derive"] }
|