-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
56 lines (51 loc) · 1.7 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
55
56
[package]
name = "solvers"
version = "0.0.1"
edition = "2021"
license = "MIT OR Apache-2.0"
[lib]
name = "solvers"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "solvers"
path = "src/main.rs"
[dependencies]
anyhow = "1"
async-trait = "0.1.80"
axum = "0.6"
bigdecimal = { version = "0.3", features = ["serde"] }
chrono = { version = "0.4.38", features = ["serde"], default-features = false }
clap = { version = "4", features = ["derive", "env"] }
ethereum-types = "0.14"
futures = "0.3.30"
hex = "0.4"
humantime = "2.1.0"
humantime-serde = "1.1.1"
hyper = "0.14"
itertools = "0.11"
num = "0.4"
prometheus = "0.13"
prometheus-metric-storage = "0.5.0"
reqwest = "0.11"
serde = "1"
serde_json = "1"
serde_with = "3"
thiserror = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal", "time"] }
toml = "0.7"
tower = "0.4"
tower-http = { version = "0.4", features = ["trace"] }
tracing = "0.1"
web3 = "0.19"
contracts = { git = "https://github.com/cowprotocol/services.git", tag = "v2.282.2", package = "contracts" }
ethrpc = { git = "https://github.com/cowprotocol/services.git", tag = "v2.282.2", package = "ethrpc" }
observe = { git = "https://github.com/cowprotocol/services.git", tag = "v2.282.2", package = "observe" }
shared = { git = "https://github.com/cowprotocol/services.git", tag = "v2.282.2", package = "shared" }
dto = { git = "https://github.com/cowprotocol/services.git", tag = "v2.282.2", package = "solvers-dto" }
rate-limit = { git = "https://github.com/cowprotocol/services.git", tag = "v2.282.2", package = "rate-limit" }
number = { git = "https://github.com/cowprotocol/services.git", tag = "v2.282.2", package = "number" }
[dev-dependencies]
glob = "0.3"
maplit = "1"
tempfile = "3"