-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 1.19 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
[package]
name = "user-service"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pretty_env_logger = "0.5.0"
axum = "0.7.4"
axum-prometheus = "0.5.0"
axum-route-error = "5.0.1"
tonic = "0.10.2"
prost = "0.12.3"
prost-types = "0.12.3"
prost-wkt-types = "0.5.0"
tokio = { version = "1.35.1", features = ["rt-multi-thread", "macros", "signal"] }
serde = "1.0.195"
serde_json = "1.0.111"
serde_derive = "1.0.195"
sqlx = { version = "0.7.3", features = [ "runtime-tokio", "postgres", "chrono", "tls-rustls" ] }
dotenvy = "0.15.7"
chrono = { version = "0.4.31", features = [ "serde" ] }
url = "2.5.0"
anyhow = "1.0.76"
log = "0.4.20"
once_cell = "1.19.0"
prometheus = "0.13.3"
derive_more = { version = "1.0.0-beta.6", features = ["display", "constructor", "from", "error", "from_str"] }
thiserror = "1.0.56"
autometrics = { version = "1.0.0", features = ["prometheus-exporter"] }
num-traits = "0.2.17"
[dev-dependencies]
testcontainers = "0.15.0"
http = "1.0.0"
http-body-util = "0.1.0"
mime = "0.3.17"
tower = "0.4.13"
tokio-stream = { version = "0.1.14", features = ["net"] }
[build-dependencies]
tonic-build = "0.10.2"