-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
41 lines (36 loc) · 1.08 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
[package]
name = "boost-guard"
version = "0.1.2"
edition = "2021"
[features]
default = []
expensive_tests = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7.2"
mime = "0.3.17"
serde = {version = "1", features = ["derive"]}
serde_json = {version = "1.0"}
tokio = { version = "1.0", features = ["full"] }
tower-http = { version = "0.5.0", features = ["trace"] }
hyper = { version = "1.0.0", features = ["full"] }
hyper-util = { version = "0.1", features = ["client", "http1", "client-legacy"] }
http-body-util = "0.1.0"
reqwest = {version ="0.11.22", features = ["json"]}
graphql_client = "0.13.0"
ethers = { version = "2.0.11", features = ["eip712"] }
dotenv = "0.15.0"
lazy_static = "1.4.0"
cached = { version = "0.48.1", features = ["proc_macro", "async"] }
rand = "0.8.5"
rand_chacha = "0.3.1"
durations = "0.1.1"
hex = "0.4.3"
sha2 = "0.10.8"
mysql_async = "0.33.0"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tracing-futures = "0.2.5"
json = "0.12.4"
[dev-dependencies]
tower = { version = "0.4", features = ["util"] }