-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (35 loc) · 1.04 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
[package]
name = "auth-service"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix = "0.13.3"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
actix-web = "4.0.0-beta.8"
diesel = { version = "=2.1.4", features = [
"extras",
"uuid",
"numeric",
"chrono",
] }
diesel-derive-enum = { version = "2.0.0-rc.0", features = ["postgres"] }
diesel-async = { version = "0.4.1", features = ["postgres", "deadpool"] }
tokio = "1.36.0"
thiserror = "1.0.58"
uuid = { version = "1.8.0", features = ["v4", "serde"] }
chrono = "0.4.35"
reqwest = { version = "0.12.1", features = ["json"] }
log = "0.4.21"
anyhow = "1.0.81"
fern = "0.6.2"
colored = "2.1.0"
dotenv = "0.15.0"
jsonwebtoken = "9.3.0"
http = "1.1.0"
openssl = "0.10.64"
alcoholic_jwt = "4091.0.0"
utoipa = { version = "4.2.3", features = ["actix_extras", "chrono", "yaml", "uuid"] }
utoipa-swagger-ui = { version = "7.0.1", features = ["actix-web"] }
futures-util = "0.3.30"