Public Access
25 lines
555 B
TOML
25 lines
555 B
TOML
[package]
|
|
name = "charybdis-keycloak-plugin"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "charybdis_keycloak"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
charybdis = { path = "../.." }
|
|
anyhow = "1.0"
|
|
async-trait = "0.1"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
toml = "0.8"
|
|
tokio = { version = "1.48", features = ["full"] }
|
|
tracing = "0.1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
uuid = { version = "1.18", features = ["v4"] }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|