-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 875 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 875 Bytes
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
[package]
name = "ifdyndnsd"
description = "Watch netlink for interface address updates to do DynDNS just like nsupdate does"
version = "0.2.0"
authors = ["Astro <astro@spaceboyz.net>"]
edition = "2018"
license = "GPL-3.0-or-later"
homepage = "https://github.com/astro/ifdyndnsd"
repository = "https://github.com/astro/ifdyndnsd.git"
documentation = "https://docs.rs/ifdyndnsd"
[dependencies]
futures = "0.3"
tokio = { version = "1", features = ["full", "rt"] }
rtnetlink = "0.18"
netlink-packet-route = "0.25"
hickory-client = { version = "0.25", features = ["dnssec-ring"] }
once_cell = "1"
serde = "1"
serde_derive = "1"
toml = "0.9"
cidr = "0.3"
base64 = "0.22"
log = "0.4"
env_logger = "0.11"
netlink-sys = "0.8"
netlink-packet-core = "0.8"
[lints.rust]
warnings = "deny"
[lints.clippy]
await-holding-refcell-ref = "allow"
pedantic = { level = "deny", priority = -1 }