forked from silius-rs/silius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (39 loc) · 1.07 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
[workspace]
members = [
"bin/silius",
"crates/bundler",
"crates/contracts",
"crates/grpc",
"crates/primitives",
"crates/rpc",
"crates/uopool",
"examples",
"tests",
]
default-members = ["bin/silius"]
[workspace.package]
authors = ["Vid Kersic <[email protected]>"]
version = "0.2.0-alpha"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Vid201/silius"
rust-version = "1.71.1"
[workspace.dependencies]
async-trait = "0.1"
ethers = { git = "https://github.com/gakonst/ethers-rs", rev = "fa3017715a298728d9fb341933818a5d0d84c2dc", features = [
"ws",
] }
expanded-pathbuf = "0.1"
eyre = "0.6.8"
parking_lot = "0.12"
serde_json = "1"
tokio = { version = "1.18", features = ["full"] }
tracing = "0.1"
[profile.debug-fast]
inherits = "release"
debug = true
[patch]
[patch.crates-io]
revm-primitives = { git = "https://github.com/bluealloy/revm", rev = "3d8ca6641d2e72448c23f4596f769c8fd1c784d1" }
[patch."https://github.com/gakonst/ethers-rs"]
ethers = { git = "https://github.com/Vid201/ethers-rs", branch = "chore/ws" }