-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
34 lines (31 loc) · 977 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
30
31
32
33
34
[package]
name = "black_rose_auth_api"
version = "0.1.0"
edition = "2021"
[workspace]
members = [".", "migration", "entity"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
eve_esi = "0.1.0"
eve_oauth2 = "0.2.0"
dotenv = "0.15.0"
migration = { path = "migration" }
entity = { path = "entity" }
sea-orm = { version = "0.12.2", features = [ "sqlx-postgres", "runtime-tokio-rustls", "macros", "with-chrono", "sqlx-sqlite" ] }
redis = "0.25.3"
rand = "0.8.5"
chrono = "0.4.34"
serde = { version = "1.0.197", features = ["derive"] }
oauth2 = "4.4.2"
anyhow = "1.0.80"
axum = "0.7.5"
tokio = "1.37.0"
tower-sessions = "0.12.1"
tower-sessions-redis-store = "0.12.0"
time = "0.3.35"
utoipa = { version = "4.2.0", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "7.0.0", features = ["axum"] }
tower-http = { version = "0.5.2", features = ["cors"] }
http = "1.1.0"
reqwest = "0.12.4"
thiserror = "1.0.60"