-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (46 loc) · 1.48 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
[package]
name = "ssz-arena"
version = "0.1.0"
edition = "2021"
[dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
sszb_derive = { package = "sszb_derive", git = "https://github.com/ghiliweld/sszb.git" }
sszb = { package = "sszb", git = "https://github.com/ghiliweld/sszb.git" }
sigp_types = { package = "types", git = "https://github.com/paulhauner/lighthouse.git", branch = "sszb-compare" }
sigp_bls = { package = "bls", git = "https://github.com/paulhauner/lighthouse.git", branch = "sszb-compare" }
grandine_types = { package = "types", git = "https://github.com/grandinetech/grandine.git" }
try_from_iter = { package = "try_from_iterator", git = "https://github.com/grandinetech/grandine.git" }
grandine_ssz = { package = "ssz", git = "https://github.com/grandinetech/grandine.git" }
typenum = "1.17.0"
ethereum_ssz = "0.7.1"
milhouse = "0.3.0"
ghilhouse = { package = "milhouse", git = "https://github.com/ghiliweld/milhouse.git" }
reqwest = { version = "0.12.7", features = ["blocking", "json"] }
serde = "1.0.210"
ethereum_ssz_derive = "0.8.0"
dhat = "0.3.3"
bytes = "1.8.0"
alloy-primitives = "0.8.9"
ethereum-types = "0.15.1"
itertools = "0.13.0"
ssz_types = "0.8.0"
divan = "0.1.15"
tree_hash = "0.8.0"
tree_hash_derive = "0.8.0"
[dev-dependencies]
dhat = "0.3.3"
[[bench]]
name = "wall_time"
harness = false
[[bench]]
name = "divan"
harness = false
[profile.release]
debug = true
[features]
default = ["sszb"]
sszb = []
sigp = []
grandine = []
block = []
state = []