-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (44 loc) · 1.27 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
[package]
name = "teleddns"
version = "0.1.3"
edition = "2021"
license = "GPL-3.0-or-later"
description = "Simple DDNS client that reacts on NetLink changes and can do a little bit more."
homepage = "https://github.com/tmshlvck/teleddns"
repository = "https://github.com/tmshlvck/teleddns"
readme = "README.md"
[dependencies]
futures = "0.3.11"
log = "0.4.8"
thiserror = "1"
netlink-sys = { version = "0.8" }
netlink-packet-utils = { version = "0.5" }
netlink-packet-route = { version = "0.19" }
netlink-packet-core = { version = "0.7" }
netlink-proto = { default-features = false, version = "0.11" }
nix = { version = "0.27.1", default-features = false, features = [
"fs",
"mount",
"sched",
"signal",
] }
tokio = { version = "1.40.0", features = ["full"] }
async-global-executor = { version = "2.0.2" }
rtnetlink = "0.14.1"
serde = "1.0.215"
serde_derive = "1.0.215"
clap = { version = "4.5.21", features = ["derive"] }
serde_yaml = "0.9.34"
clap-verbosity-flag = "3.0.0"
env_logger = "0.10.0"
reqwest = { version = "0.12.12", features = [
"json",
"rustls-tls",
], default-features = false }
http = "1.2.0"
async-process = "2.3.0"
[dev-dependencies]
env_logger = "0.10.0"
ipnetwork = "0.18.0"
async-std = { version = "1.9.0", features = ["attributes"] }
macaddr = "1.0"