-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
52 lines (49 loc) · 1.32 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
[package]
name = "pragma-monitoring"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arc-swap = "1.6.0"
axum = { version = "0.6", features = ["macros", "multipart"] }
axum-macros = "0.3"
bigdecimal = "0.4.1"
chrono = "0.4"
deadpool = { version = "0.9.3", features = ["managed"] }
diesel = { version = "2.1.0", features = [
"postgres",
"numeric",
"chrono",
"uuid",
"serde_json",
] }
diesel-async = { version = "0.4.1", features = [
"async-connection-wrapper",
"deadpool",
"postgres",
"tokio",
] }
diesel_derives = "1.4.0"
diesel_migrations = "2"
dotenv = "0.15.0"
env_logger = "0.10.1"
futures = "0.3.28"
hyper = "0.14.27"
lazy_static = "1.4.0"
moka = { version = "0.12.8", features = ["future"] }
num-bigint = "0.4"
phf = { version = "0.11", features = ["macros"] }
prometheus = "0.13.3"
reqwest = { version = "0.11.22", features = ["json"] }
serde = { version = "1.0.130", features = ["derive"] }
serde_json = { version = "1.0.130" }
starknet = "0.11.0"
strum = { version = "0.25.0", features = ["derive"] }
thiserror = "2.0"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
url = "2.5.0"
uuid = { version = "1.4", features = ["fast-rng", "v4", "serde"] }
[dev-dependencies]
rstest = "0.18.2"