-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
117 lines (98 loc) · 1.97 KB
/
Cargo.toml
File metadata and controls
117 lines (98 loc) · 1.97 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[package]
name = "backrunner-rs"
edition = "2021"
version = "0.1.0"
[package.metadata.cargo-udeps.ignore]
normal = ["if_chain"]
[dependencies]
anyhow = "*"
async-trait = "*"
chrono = "0"
color-eyre = "0.6.1"
crypto-bigint = "*"
dashmap = "*"
ethabi = "*"
ethereum-types = "*"
ethers-flashbots = "*"
futures-util = "*"
if_chain = "1.0.0"
itertools = "0.10.3"
lazy_static = "*"
libmath = "*"
log = "^0.4"
num = "*"
num-integer = "*"
num-traits = "*"
once_cell = "1.12.0"
rand = "0.8.4"
rayon = "*"
serde_json = "1"
serde_with = "*"
tracing = "0.1.26"
url = "*"
base64 = "*"
crossbeam = "*"
[dependencies.async-std]
version = "1.11.0"
features = ["attributes"]
optional = false
[dependencies.bigdecimal]
version = "*"
features = ["serde"]
optional = false
[dependencies.blocknative]
version = "0.1.0"
path = "./blocknative"
features = []
optional = false
[dependencies.curl]
version = "*"
features = ["ssl"]
optional = false
[dependencies.ethers]
version = "*"
features = ["ws", "abigen", "openssl"]
optional = false
[dependencies.futures]
version = "0.3.21"
features = ["thread-pool"]
optional = false
[dependencies.futures-signals]
version = "*"
features = ["debug","serde"]
optional = false
default-features = false
[dependencies.graphql_client]
version = "*"
features = ["reqwest-blocking"]
optional = false
[dependencies.num-bigint]
version = "*"
features = ["serde"]
optional = false
[dependencies.num-rational]
version = "*"
features = ["serde"]
optional = false
[dependencies.reqwest]
version = "^0.11"
features = ["json", "blocking"]
optional = false
[dependencies.serde]
version = "1.0.136"
features = ["derive"]
optional = false
[dependencies.tokio]
version = "1.18.2"
features = ["full"]
optional = false
[dependencies.tokio-util]
version = "*"
features = ["full"]
optional = false
[target."cfg(any(windows, unix))".dependencies]
[target."cfg(any(windows, unix))".dev-dependencies]
[target."cfg(any(windows, unix))".build-dependencies]
[profile.release]
lto = true
[profile.release.package]