-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
90 lines (87 loc) · 2.23 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
[workspace]
members = [
"src/ic_tee_agent",
"src/ic_tee_cdk",
"src/ic_tee_cli",
"src/ic_tee_host_daemon",
"src/ic_tee_identity",
"src/ic_tee_logtail",
"src/ic_tee_nitro_attestation",
"src/ic_tee_nitro_gateway",
]
resolver = "2"
[profile.release]
debug = false
lto = true
strip = true
opt-level = 's'
[workspace.package]
version = "0.2.6"
edition = "2021"
repository = "https://github.com/ldclabs/ic-tee"
keywords = ["tee", "canister", "icp", "nitro"]
categories = ["web-programming"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
async-trait = "0.1"
anyhow = "1"
axum = { version = "0.8", features = [
"http1",
"http2",
"json",
# "macros",
"matched-path",
"tokio",
"query",
], default-features = true }
axum-core = "0.5"
axum-server = { version = "0.7", features = ["tls-rustls"] }
http = "1.2"
bytes = "1"
base64 = "0.22"
clap = { version = "4.5", features = ["derive"] }
candid = "0.10"
ciborium = "0.2"
const-hex = "1"
lazy_static = "1.5"
serde = "1"
serde_json = "1"
serde_bytes = "0.11"
sha2 = "0.10"
ic-cdk = "0.17"
ic-stable-structures = "0.6"
ic-canister-sig-creation = "1.1"
ic-certification = "3.0"
ic-agent = "0.39"
ic_cose_types = "0.6"
ic_cose = "0.6"
getrandom = { version = "0.2", features = ["custom"] }
coset = "0.3"
x509-parser = { version = "0.16" }
ed25519-consensus = "2.1"
rand = "0.8"
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
tokio-vsock = "0.7"
aws-nitro-enclaves-nsm-api = "0.4"
log = "0.4"
structured-logger = "1"
hyper-util = { version = "0.1", features = ["client-legacy"] }
mime = "0.3"
rustls = "0.23"
reqwest = { version = "0.12", features = [
"rustls-tls",
"rustls-tls-native-roots",
"json",
"gzip",
"stream",
"http2",
# "hickory-dns",
], default-features = true }
libc = "0.2"
thiserror = "2"
xid = "1.1"
ic-types = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
ic-crypto-standalone-sig-verifier = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
ic-crypto-secp256k1 = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }
ic-crypto-ed25519 = { git = "https://github.com/dfinity/ic/", rev = "5d202894864f4db4a5a46f44422aebc80c3d321b" }