-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (55 loc) · 1.71 KB
/
Cargo.toml
File metadata and controls
58 lines (55 loc) · 1.71 KB
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
[workspace]
resolver = "2"
members = [
"crates/enclave-server",
"crates/enclave-contract", "crates/enclave",
]
[workspace.package]
edition = "2024"
version = "0.1.0"
repository = "https://github.com/SeismicSystems/enclave"
homepage = "https://github.com/SeismicSystems/enclave"
authors = ["Seismic Systems"]
license = "MIT"
readme = "README.md"
[workspace.dependencies]
enclave-contract = { path = "crates/enclave-contract" }
seismic-enclave = {path = "crates/enclave" }
# Other deps
alloy = "1.0"
aes-gcm = "0.10"
anyhow = "1.0"
az-tdx-vtpm = "0.7.4"
bincode = "1.3.3"
clap = { version = "4.5.51", features = ["derive", "env"] }
dcap-rs = "0.1.0"
#auto_impl = "1"
#base64 = "0.22"
base64-url = "3.0.0"
#thiserror = "2.0"
hex = "0.4.3"
hkdf = "0.12"
jsonrpsee = { version = "0.26.0", features = ["server", "client","macros"] }
libc = "0.2.177"
openssl = "0.10.74"
#log = "0.4"
rand = "0.9.2"
reqwest = { version = "0.11", features = ["json"] }
schnorrkel = { version = "0.11.2", features = ["serde"] }
#scroll = { version = "0.11.0", default-features = false, features = ["derive"] }
secp256k1 = { version = "0.30", features = ["rand", "recovery", "std", "serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10.9"
#strum = { version = "0.26", features = ["derive"] }
#strum_macros = "0.26"
tokio = { version = "1.44", features = ["full"] }
tracing = { version = "0.1.41"}
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt", "ansi", "json"] }
#proc-macro2 = "1.0"
#quote = "1.0"
#syn = "2.0"
urlencoding = "2.1"
zeroize = "1.8.1"
coco-provider = { git = "https://github.com/automata-network/coco-provider-sdk", default-features = false}
x509-parser = "0.15.1"