-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (30 loc) · 1022 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
[package]
name = "ask-auth"
version = "0.1.0"
edition = "2021"
description = "A simple OAuth 2.0 library for Rust, designed for ease of use with axum framework."
license = "MIT"
repository = "https://github.com/askasp/ask-auth"
homepage = "https://github.com/askasp/ask-auth"
documentation = "https://docs.rs/ask-auth"
authors = ["[email protected]"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7.4", features = ["macros", "query"] }
oasgen = "0.20.1"
serde = { version = "1.0.197", features = ["derive"] }
tokio = { version = "1.36.0" }
tracing-subscriber = "0.3.18"
anyhow = "1.0.81"
oauth2 = "4.4.2"
tracing = "0.1.40"
reqwest = { version = "0.12.2", features = ["json"] }
axum-login = "0.15.0"
tower-sessions = "0.12.0"
tower-cookies = { version = "0.10.0", features = ["private", "signed"] }
async-trait = "0.1.79"
serde_json = "1.0.115"
thiserror = "1.0.58"
magic-crypt = "3.1.13"
jsonwebtoken = "9.3.0"