-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (37 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
[workspace]
resolver = "2"
members = [
"ekubo",
"atomic-arbitrage",
]
[workspace.lints.rust]
warnings = "deny"
[workspace.lints.clippy]
restriction = "deny"
missing_docs_in_private_items = "allow"
implicit_return = "allow"
question_mark_used = "allow"
blanket_clippy_restriction_lints = "allow"
mod_module_files = "allow"
pub_use = "allow"
std_instead_of_alloc = "allow"
exhaustive_structs = "allow"
min_ident_chars = "allow"
[workspace.dependencies]
clap = { version = "4.5.15", features = ["derive"] }
color-eyre = "0.6"
dotenvy = "0.15"
ekubo = { path = "ekubo" }
futures = "0.3"
serde = "^1.0"
serde_derive = "^1.0"
serde_with = "^2.0"
serde_json = "^1.0"
starknet = "0.11"
starknet-core = "0.11"
tokio = { version = "1", default-features = false, features = ["macros"]}
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
url = "2.5"
reqwest = {version = "0.12", default-features = false, features = ["json", "multipart", "rustls-tls"]}
reqwest-middleware = "0.3"