This repository has been archived by the owner on Aug 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
78 lines (66 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "archon"
version = "0.1.0-alpha"
edition = "2021"
authors = ["refcell"]
description = "Maximally efficient, robust batch submission service"
repository = "https://github.com/refcell/archon"
license = "MIT"
keywords = ["op-stack", "op", "archon", "node", "ethereum"]
exclude = [ "logo", "archup" ]
[[bin]]
name = "archon"
path = "bin/archon.rs"
[[bench]]
name = "channels"
harness = false
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[dependencies]
tokio = { version = "1.25.0", features = ["full"] }
async-trait = "0.1.64"
futures = "0.3.26"
eyre = "0.6.8"
hex = "0.4.3"
libflate = "1.2.0"
# Logging Telemetry
chrono = "0.4.22"
tracing = "0.1.36"
ansi_term = "0.12.1"
tracing-log = "0.1.3"
tracing-subscriber = { version = "0.3.16", features = ["fmt", "env-filter", "ansi"] }
# Serialization
serde = { version = "1.0.152", features = [ "derive" ] }
serde_json = "1.0.93"
# Backend Crates
sled = "0.34.7"
uuid = { version = "1.3.0", features = ["v4"] }
bytes = "1.4.0"
reqwest = "0.11.14"
jsonwebtoken = "8.2.0"
rand = "0.8.5"
home = "0.5.4"
# CLI
figment = { version = "0.10.8", features = ["toml", "env"] }
ctrlc = "3.2.3"
clap = { version = "3.2.18", features = ["derive", "env"] }
dirs = "4.0.0"
thiserror = "1.0.39"
flate2 = { version = "1.0.25", features = ["zlib"] }
once_cell = "1.17.1"
# Ethers
ethers-core = "1.0.2"
ethers-providers = "1.0.2"
ethers-middleware = "1.0.2"
ethers-signers = "1.0.2"
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tracing-test = "0.2.4"
criterion = { version = "0.4", features = [ "async_tokio", "plotters" ]}
plotters = "0.3.4"
tempfile = "3.4.0"