forked from danipardo/petclinic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (28 loc) · 896 Bytes
/
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
[package]
name = "petclinic"
version = "0.1.0"
edition = "2021"
[dependencies]
argh = "0.1.12"
axum = { version = "0.7.1", features = ["query", "macros", "form"] }
axum-extra = { version = "0.9.0", features = ["cookie", "form"] }
axum-macros = "0.4.0"
anyhow = "1.0.75"
hyper = "1.0.1"
tokio = { version = "1.34.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.108"
chrono = { version = "0.4.31", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tower = { version = "0.4", features = ["full"] }
tower-http = { version = "0.5", features = ["full"] }
async-trait = "0.1.74"
tera = "1"
sha-1 = "0.10.1"
redis = "0.23.3"
rand = "0.8.5"
rbson = "2.0"
diesel = { version = "2.1.4", features = ["sqlite", "chrono"] }
config = "0.13.4"
deadpool-diesel = { version = "0.5.0", features = ["sqlite"] }