aboutsummaryrefslogtreecommitdiffstats
path: root/crates/api-auth/Cargo.toml
blob: 7df9411d9b2189b0f9239ff30067dca77e1959ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "api-auth"
version = "0.0.0"
edition = "2024"
license.workspace = true
readme.workspace = true
documentation.workspace = true
homepage.workspace = true

[dependencies]
api-core = { workspace = true, features = ["auth", "users"] }
async-trait.workspace = true
oauth2 = "5.0.0"
secrecy.workspace = true
serde.workspace = true
sqlx.workspace = true
thiserror.workspace = true
utoipa = { workspace = true, optional = true }
url.workspace = true

[features]
discord = []
utoipa = ["dep:utoipa", "serde/derive"]