-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
120 lines (104 loc) · 2.83 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[package]
name = "cloudflare-ddns"
version = "0.2.0"
edition = "2021"
[profile.release]
opt-level = 3
strip = true
lto = "fat"
panic = "unwind"
codegen-units = 1
incremental = false
[profile.linux-dispatcher]
inherits = "release"
opt-level = 'z'
strip = true
lto = "fat"
panic = "abort"
codegen-units = 1
incremental = false
[profile.dev]
opt-level = 0
incremental = true
debug = true
panic = "unwind"
strip = false
lto = "off"
[workspace]
resolver = "2"
members = [
".",
"modules/linux-dispatcher",
"modules/ip_macro",
]
[features]
default = []
dev-build = []
trace = ["tokio/tracing", "dep:console-subscriber"]
[dependencies]
tokio = { version = "1.43.0", features = ["full"] }
futures = { version = "0.3.31"}
serde = { version = "1.0.217", features = ["derive", "rc"] }
anyhow = { version = "1.0.95", features = ["backtrace"] }
ip_macro = { version = "*", path = "./modules/ip_macro" }
console-subscriber = { version = "0.4.1", optional = true }
simdutf8 = "0.1.5"
url = "2.5.4"
toml = "0.8.19"
serde_json = "1.0.128"
bytes = "1.9.0"
thiserror = "2.0.11"
ahash = "0.8.11"
arc-swap = "1.7.1"
notify = "8.0.0"
notify-debouncer-full = "0.5.0"
idna = "1.0.2"
[dependencies.reqwest]
version = "0.12.12"
default-features = false
features = [
"charset",
"http2",
"macos-system-configuration",
"stream",
"rustls-tls-native-roots",
"brotli",
"zstd",
"deflate",
"default",
"gzip",
"json"
]
[target.'cfg(windows)'.dependencies]
windows-core = "0.59.0"
[target.'cfg(target_os = "linux")'.dependencies]
dbus = { version = "0.9.7", features = ["futures"] }
dbus-tokio = "0.7.6"
simple_logger = { version = "5.0.0", features = ["colors", "threads", "timestamps", "stderr"] }
systemd-journal-logger = "2.1.1"
log = "0.4.21"
tempfile = "3.13.0"
[target.'cfg(unix)'.dependencies]
nix = { version = "0.29.0", features = ["user"] }
[target.'cfg(windows)'.dependencies.windows]
version = "0.59.0"
features = [
"Win32_UI_WindowsAndMessaging",
"Win32_Foundation",
"Win32_System_Com",
"Win32_System_EventNotificationService",
"Win32_System_Ole",
"Win32_System_Variant",
"Win32_NetworkManagement",
"Win32_Networking",
"Win32_Networking_WinInet",
"Win32_Networking_NetworkListManager"
]
[target.'cfg(windows)'.dependencies.windows-implement]
version = "0.59.0"
[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.10.0"
core-foundation-sys = "0.8.6"
system-configuration = "0.6.1"
[build-dependencies]
tokio = { version = "1.43.0", features = ["rt", "macros", "fs", "io-util", "process"] }