-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
81 lines (65 loc) · 1.47 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
[workspace]
members = [
"authtea",
"netstatus",
"color-theme",
"tunet-helper",
"tunet-settings",
"tunet-model",
"tunet",
"tunet-cui",
"tunet-gui",
"tunet-service",
"tunet-flutter/native",
]
resolver = "2"
[workspace.package]
edition = "2021"
authors = ["Berrysoft <[email protected]>"]
license = "MIT"
repository = "https://github.com/Berrysoft/tunet-rust"
[profile.release]
lto = true
codegen-units = 1
opt-level = "z"
[workspace.dependencies]
authtea = { path = "authtea" }
color-theme = { path = "color-theme" }
netstatus = { path = "netstatus" }
tunet-helper = { path = "tunet-helper" }
tunet-model = { path = "tunet-model" }
tunet-settings = { path = "tunet-settings" }
anyhow = "1"
async-stream = "0.3"
cfg-if = "1"
enum_dispatch = "0.3"
thiserror = "1"
compio = "0.12"
cyper = { version = "0.1", default-features = false }
flume = "0.11"
chrono = { version = "0.4", default-features = false, features = [
"clock",
"std",
] }
clap = { version = "4", features = ["derive"] }
dirs = "5"
log = "0.4"
base64 = "0.22"
futures-core = "0.3"
futures-util = "0.3"
itertools = "0.13"
keyring = { version = "3", features = [
"apple-native",
"windows-native",
"linux-native",
] }
mac_address2 = "2"
rustls = { version = "0.23", default-features = false }
rustls-platform-verifier = "0.3"
serde = "1"
serde_json = "1"
serde_with = "3"
core-foundation = "0.9"
system-configuration = "0.6"
windows = "0.58"
winresource = "0.1"