-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
50 lines (42 loc) · 1.02 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
[workspace]
members = [ "crates/bundle_provider",
"crates/cli/",
"crates/core/",
"crates/sqlite_db/",
"crates/testfile/"
]
resolver = "2"
[workspace.package]
# name = "contender"
version = "0.1.0"
edition = "2021"
rust-version = "1.80"
authors = ["Flashbots"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/flashbots/contender"
repository = "https://github.com/flashbots/contender"
[workspace.dependencies]
contender_core = { path = "crates/core/" }
contender_sqlite = { path = "crates/sqlite_db/" }
contender_testfile = { path = "crates/testfile/" }
contender_bundle_provider = { path = "crates/bundle_provider/" }
eyre = "0.6.12"
tokio = { version = "1.40.0" }
alloy = { version = "0.3.6" }
serde = "1.0.209"
## cli
clap = { version = "4.5.16" }
csv = "1.3.0"
## core
rand = "0.8.5"
futures = "0.3.30"
async-trait = "0.1.82"
jsonrpsee = { version = "0.24" }
alloy-serde = "0.5.4"
serde_json = "1.0.132"
## sqlite
r2d2_sqlite = "0.25.0"
rusqlite = "0.32.1"
r2d2 = "0.8.10"
## testfile
toml = "0.8.19"