-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
54 lines (46 loc) · 1.26 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
[package]
name = "rs-uniswap-sniper"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ethers-flashbots = { git = "https://github.com/onbjerg/ethers-flashbots" }
ethers = { version = "=2.0.7", features = ["abigen", "ws"] }
revm = { version = "3", features = [
"serde",
"std",
"optional_block_gas_limit",
"optional_no_base_fee",
"optional_balance_check",
"optional_eip3607",
"optional_gas_refund",
] }
tokio = { version = "1", features = ["full"] }
log = "0.4.17"
url = "2.3.1"
thiserror = "1.0.37"
sha3 = "0.10.8"
ethabi = "18.0.0"
serde_derive = "1.0.183"
chrono = "0.4.23"
simple_logger = "4.2.0"
anyhow = "1.0.75"
colored = "2.0.4"
fern = { version = "0.6", features = ["colored"] }
futures = "0.3.5"
eyre = "0.6.8"
hashbrown = "0.14.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.107"
bigdecimal = "0.4.1"
lazy_static = "1.4.0"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
tikv-jemallocator = "0.5.4"
[patch.crates-io]
revm = { git = "https://github.com/bluealloy/revm/", rev = "80c909d6f242886cb26e6103a01d1a4bf9468426" }
[profile.maxperf]
inherits = "release"
debug = true
lto = "fat"
opt-level = 3
codegen-units = 1