-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
51 lines (47 loc) · 1.36 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
[workspace]
members = [
"lib",
"hdp-macro",
"hdp-sdk",
"program",
"script",
"examples/simple/simple",
"examples/simple/program",
"examples/compliance/compliance",
"examples/compliance/program",
]
resolver = "2"
[workspace.dependencies]
hdp-lib = { path = "./lib" }
hdp-macro = { path = "./hdp-macro" }
hdp-sdk = { path = "./hdp-sdk" }
cfg-if = "1.0.0"
bincode = "1.3.3"
serde = { version = "1.0", features = ["derive"] }
alloy-sol-types = "0.8.6"
alloy-primitives = { version = "0.8.6", features = ["serde"] }
alloy-consensus = "0.4.2"
alloy-rpc-client = "0.4.2"
alloy-eips = "0.4.2"
alloy-rpc-types = "0.4.2"
alloy-rlp = { version = "0.3.5", features = ["derive"] }
alloy-transport = "0.4.2"
alloy-trie = { version = "0.6.0" }
dotenv = "0.15.0"
eth-trie-proofs = { version = "0.1.2" }
reqwest = { version = "0.12", features = ["json"] }
ssz_rs = { git = "https://github.com/ralexstokes/ssz-rs.git", features = [
"serde",
] }
serde_with = "3.11.0"
url = { version = "2.5.2", features = ["serde"] }
thiserror-no-std = "2.0.2"
tokio = { version = "1.40.0", features = ["full"] }
sp1-zkvm = { version = "2.0.0", features = ["verify"] }
sp1-sdk = "2.0.0"
[workspace.lints]
rust.missing_debug_implementations = "warn"
rust.unreachable_pub = "warn"
rust.unused_must_use = "deny"
rust.rust_2018_idioms = { level = "deny", priority = -1 }
rustdoc.all = "warn"