-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 1.14 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
[package]
name = "rest_articles_axum"
version = "0.1.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "^0.7"
tokio = { version = "^1.38", features = ["full"] }
tonic = { version = "^0.11" }
tonic-reflection = "^0.11"
serde = { version = "^1", features = ["derive"] }
serde_json = "^1"
mongodb = "^2.8"
futures-util = "^0.3"
bson = "^2.10"
# jsonwebtoken = "^9.3"
thiserror = "^1"
tower = "^0.4"
tower-http = { version = "^0.5", features = ["fs", "cors", "catch-panic", "compression-full", "timeout"] }
chrono = { version = "^0.4", features = ["serde"] }
async-trait = "^0.1"
utoipa = { version = "^4.2", features = ["chrono", "preserve_order", "preserve_path_order"] }
utoipa-swagger-ui = { version = "^7.1", features = ["axum"] }
askama = "^0.12"
askama_axum = "^0.4"
o2o = "^0.4"
hyper = { version = "^1.3", features = ["full"] }
hyper-util = { version = "^0.1", features = ["full"] }
prost = "^0.12"
prost-types = "^0.12"
futures = "^0.3"
[dev-dependencies]
mockall = "^0.12"
[build-dependencies]
tonic-build = { version = "^0.11", features = ["prost"] }