-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (31 loc) · 815 Bytes
/
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
[package]
name = "ddns-updater"
description = "A simple RFC 2136 dynamic DNS updater"
repository = "https://github.com/chenxiaolong/ddns-updater"
readme = "README.md"
license = "GPL-3.0"
version = "0.1.10"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
gethostname = "0.5.0"
netif = "0.1.6"
rand = "0.8.5"
thiserror = "1.0.41"
toml = "0.8.2"
tracing = "0.1.40"
[dependencies.clap]
version = "4.3.10"
features = ["derive"]
[dependencies.serde]
version = "1.0.166"
features = ["derive"]
[dependencies.serde_with]
version = "3.0.0"
features = ["base64", "macros"]
[dependencies.hickory-client]
version = "0.24.0"
features = ["dnssec", "dnssec-ring"]
[dependencies.tracing-subscriber]
version = "0.3.18"
features = ["env-filter"]