-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 859 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
[package]
name = "ddns4cf"
version = "0.3.8"
edition = "2021"
authors = ["Magic Crazy Man"]
description = "Dynamic Domain Naming Service for Cloudflare"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
json5 = "0.4.1"
clap = "2.34.0"
serde = { version = "1.0.132", features = ["derive"] }
scraper = "0.12.0"
reqwest = { version = "0.11.7", features = ["socks"] }
tokio = { version = "1", features = ["full"] }
chrono = "0.4.19"
log = { version = "0.4.17" }
fern = { version = "0.6.1" }
async-trait = "0.1.58"
futures = "0.3.25"
regex = "1.9.5"
smallvec = { version = "1.13.2", features = ["serde"] }
serde_json = "1.0.117"
simd-json = "0.13.10"
windows = { version = "0.58.0", features = ["Win32_System_Power", "Win32_UI_WindowsAndMessaging"] }
bytes = "1.8.0"
[profile.release]
opt-level = 3