-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
45 lines (41 loc) · 1.15 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
[package]
name = "openexecution"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7.2", features = ["json"] }
axum-extra = { version = "0.9.2", features = ["typed-header"] }
headers = "0.4.0"
reqwest = { version = "0.11.22", features = ["json"] }
tokio = { version = "1.35", features = ["full"] }
tracing = "0.1.4"
tracing-subscriber = {version = "0.3.18", features = ["env-filter"]}
futures = "0.3.29"
jsonwebtoken = "9.2.0"
clap = "2.33.3"
serde_json = "1.0.108"
serde_repr = "0.1.13"
serde = {version = "1.0.193", features = ["derive"] }
hash-db = "0.15.2"
ethers-core = "1.0.2"
keccak-hash = "0.10.0"
hash256-std-hasher = "0.15.2"
metastruct = "0.1.0"
ethereum-types = "0.14.1"
array-bytes = "6.1.0"
ethereum_serde_utils = "0.5.1"
ssz_types = "0.6.0"
superstruct = "0.7.0"
hex = "0.4.3"
chrono = "0.4.31"
lru = "0.12.1"
rlp = "0.5.2"
triehash = "0.8.4"
strum = { version = "0.26.1", features = ["derive"] }
moka = { version = "0.12.8", features = ["future"] }
[profile.highperf]
inherits = "release"
lto = "fat"
codegen-units = 1
incremental = false