-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 1 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
[package]
name = "simple-oauth-server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.80"
axum = { version = "0.7.5", features = ["macros"] }
openidconnect = "3.5.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.68"
tokio = { version = "1.0", features = ["full"] }
tower-http = {version = "0.5.2", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = { version = "2.5.0", features = ["serde"] }
anyhow = "1.0.86"
ed25519-dalek = {version= "2.1.1", features = ["rand_core"]}
rand = "0.8.5"
base64 = "0.22.1"
subtle = "2.5.0"
chrono = "0.4.38"
tower-cookies = { version = "0.10.0", features = ["private"] }
serde_urlencoded = "0.7.1"
sqlx = { version = "0.7", features = [ "runtime-tokio", "postgres", "chrono" ] }
dotenv = "0.15.0"
[dev-dependencies]
tower = "0.4.13"
reqwest = { version = "0.12.5", features = ["cookies"]}