-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 924 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
[package]
name = "sso-server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.6", features = ["macros"] }
http = "0.2"
oauth2 = "4.1"
# Use Rustls because it makes it easier to cross-compile on CI
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
redis = { version = "0.24", features = ["tokio-comp"] }
rand = "0.8.5"
jsonwebtoken = { version = "9", features = ["use_pem"] }
tower-http = { version = "0.4.0", features = ["cors"] }
tower-cookies = "0.9"
sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls", "uuid"] }
dotenv = "0.15"
openssl = "0.10"
askama = { version = "0.12", features = ["with-axum"] }
askama_axum = "0.3"