-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
75 lines (60 loc) · 1.36 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
[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" }
async-trait = "0.1"
once_cell = "1"
anyhow = "1"
cfg-if = "1"
enum_dispatch = "0.3"
thiserror = "1"
chrono = { version = "0.4", default-features = false, features = [
"clock",
"std",
] }
clap = { version = "4", features = ["derive"] }
dirs = "5"
log = "0.4"
base64 = "0.21"
futures-core = "0.3"
futures-util = "0.3"
itertools = "0.11"
keyring = { version = "2", features = ["linux-no-secret-service"] }
mac_address = { version = "2", package = "mac_address2" }
serde = "1"
serde_json = "1"
serde_with = "3"
tokio = "1"
tokio-stream = "0.1"
objc = "0.2"
core-foundation = "0.9"
system-configuration = "0.5"
windows = "0.48"
winresource = "0.1"