-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathCargo.toml
95 lines (92 loc) · 1.78 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
[workspace]
members = [
"mono",
"mega",
"gateway",
"common",
"mercury",
"jupiter",
"ceres",
"libra",
"vault",
"neptune",
"aries",
"saturn",
"taurus",
"lunar/src-tauri",
"atlas",
"orion",
"panel",
]
default-members = ["mega", "mono", "libra", "aries"]
resolver = "1"
[workspace.dependencies]
gateway = { path = "gateway" }
common = { path = "common" }
mercury = { path = "mercury" }
jupiter = { path = "jupiter" }
ceres = { path = "ceres" }
callisto = { path = "jupiter/callisto" }
gemini = { path = "gemini" }
vault = { path = "vault" }
neptune = { path = "neptune" }
saturn = { path = "saturn" }
taurus = { path = "taurus" }
mega = { path = "mega" }
mono = { path = "mono" }
libra = { path = "libra" }
anyhow = "1.0.93"
serde = "1.0.215"
serde_json = "1.0.132"
tracing = "0.1.40"
tracing-subscriber = "0.3.19"
tracing-appender = "0.2"
thiserror = "2.0.9"
rand = "0.8.5"
smallvec = "1.13.2"
tokio = "1.42"
tokio-stream = "0.1.17"
tokio-test = "0.4.4"
clap = "4.5.23"
async-trait = "0.1.83"
async-stream = "0.3.6"
bytes = "1.8.0"
memchr = "2.7.4"
chrono = "0.4.39"
sha1 = "0.10.6"
futures = "0.3.30"
futures-util = "0.3.30"
go-defer = "0.1.0"
russh = "0.49.0"
russh-keys = "0.49.1"
axum = "0.8.1"
axum-extra = "0.10.0"
axum-server = "0.7.1"
tower-http = "0.6.1"
tower = "0.5.2"
hex = "0.4.3"
sea-orm = "1.1.3"
flate2 = "1.0.35"
bstr = "1.11.0"
colored = "3.0.0"
idgenerator = "2.0.0"
num_cpus = "1.16.0"
config = "0.15.4"
shadow-rs = "0.36.0"
reqwest = "0.12.12"
lazy_static = "1.5.0"
uuid = "1.11.0"
regex = "1.11.1"
ed25519-dalek = "2.1.1"
ctrlc = "3.4.4"
git2 = "0.20.0"
tempfile = "3.14.0"
home = "0.5.9"
ring = "0.17.8"
cedar-policy = "4.2.2"
secp256k1 = "0.30.0"
oauth2 = "4.4.2"
base64 = "0.22.1"
encoding_rs = "0.8.31"
[profile.release]
debug = true