-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (52 loc) · 1.32 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "ddrs"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
description = "Dynamic DNS client"
homepage = "https://github.com/jakewmeyer/ddrs"
repository = "https://github.com/jakewmeyer/ddrs"
documentation = "https://docs.rs/ddrs"
keywords = ["ddns", "dynamic-dns", "ddclient", "dns", "networking"]
categories = ["command-line-utilities", "network-programming"]
readme = "README.md"
[dependencies]
anyhow = "1"
async-trait = "0.1.83"
clap = { version = "4.5.20", features = ["derive"] }
dyn-clone = "1.0.17"
hickory-resolver = "0.24.1"
humantime-serde = "1.1.1"
local-ip-address = "0.6.3"
reqwest = { version = "0.12.8", features = [
"http2",
"charset",
"json",
"zstd",
"brotli",
"rustls-tls",
], default-features = false }
serde = { version = "1", features = ["serde_derive"] }
serde_json = "1"
smallvec = { version = "1.13.2", features = ["serde"] }
stun = "0.6.0"
tokio = { version = "1.41.0", features = [
"rt",
"rt-multi-thread",
"time",
"signal",
"macros",
"parking_lot",
] }
tokio-util = { version = "0.7.12", features = ["rt"] }
toml = "0.8.19"
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = "0.3.18"
typetag = "0.2.18"
url = { version = "2.5.3", features = ["serde"] }
[profile.release]
strip = true
lto = true
codegen-units = 1
[dev-dependencies]
wiremock = "0.6.2"