-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathCargo.toml
39 lines (35 loc) · 1.09 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
[package]
name = "sgx-prover"
version = "0.1.0"
edition = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
raiko-lib = { workspace = true, optional = true }
raiko-primitives = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
serde_with = { workspace = true, optional = true }
tokio = { workspace = true, optional = true }
bincode = { workspace = true, optional = true }
once_cell = { workspace = true }
alloy-sol-types = { workspace = true }
alloy-signer = { workspace = true }
alloy-contract = { workspace = true }
alloy-provider = { workspace = true }
alloy-signer-wallet = { workspace = true }
alloy-rpc-client = { workspace = true }
alloy-transport-http = { workspace = true }
pem = {version = "3.0.4", optional = true}
url = { workspace = true }
[features]
default = ["enable", "pem"]
enable = [
"raiko-lib",
"raiko-primitives",
"serde",
"serde_json",
"serde_with",
"bincode",
"tokio",
]
docker_build = []