-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
71 lines (68 loc) · 1.7 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
[workspace]
resolver = "2"
members = [
"atoma-confidential",
"atoma-daemon",
"atoma-service",
"atoma-state",
"atoma-sui",
"atoma-utils",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
[workspace.dependencies]
aes-gcm = "0.10.3"
anyhow = "1.0.81"
atoma-confidential = { path = "./atoma-confidential" }
atoma-daemon = { path = "./atoma-daemon" }
atoma-p2p = { path = "./atoma-p2p" }
atoma-state = { path = "./atoma-state" }
atoma-sui = { path = "./atoma-sui" }
atoma-utils = { path = "./atoma-utils" }
axum = "0.7.5"
base64 = "0.22.1"
blake2 = "0.10.6"
clap = "4.5.4"
config = "0.14.0"
dcap-rs = { git = "https://github.com/automata-network/dcap-rs.git" }
dotenv = "0.15.0"
fastcrypto = "0.1.8"
flume = "0.11.1"
futures = "0.3.30"
futures-util = "0.3.30"
http = "0.2"
hex = "0.4.3"
hf-hub = "0.3.2"
hkdf = "0.12.4"
hyper = "1.5.0"
metrics = "0.23"
metrics-exporter-prometheus = "0.14.0"
lazy_static = "1.5.0"
once_cell = "1.20.2"
prometheus = "0.13.4"
rand = "0.8.5"
reqwest = "0.12.1"
rs_merkle = "1.4.2"
serde = "1.0.204"
serde_json = "1.0.120"
serde_yaml = "0.9.34"
serial_test = "3.1.1"
sha2 = "0.10.8"
sqlx = "0.8.2"
sui-keys = { git = "https://github.com/mystenlabs/sui", package = "sui-keys", tag = "testnet-v1.39.3" }
sui-sdk = { git = "https://github.com/mystenlabs/sui", package = "sui-sdk", tag = "testnet-v1.39.3" }
tdx = { git = "https://github.com/automata-network/tdx-attestation-sdk.git", branch = "main" }
tempfile = "3.13.0"
thiserror = "1.0.58"
tokenizers = "0.21.0"
tokio = "1.36.0"
toml = "0.8.12"
tower = "0.5.1"
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.18"
utoipa = "5.1.1"
utoipa-swagger-ui = "8.0.1"
x25519-dalek = "2.0.1"