39 lines
1021 B
TOML
39 lines
1021 B
TOML
[package]
|
|
name = "basic-oidc"
|
|
version = "0.1.3"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix = "0.13.0"
|
|
actix-identity = "0.5.2"
|
|
actix-web = "4"
|
|
actix-session = { version = "0.7.1", features = ["cookie-session"] }
|
|
clap = { version = "3.2.20", features = ["derive", "env"] }
|
|
include_dir = "0.7.2"
|
|
log = "0.4.17"
|
|
serde_json = "1.0.85"
|
|
serde_yaml = "0.9.11"
|
|
env_logger = "0.9.0"
|
|
serde = { version = "1.0.144", features = ["derive"] }
|
|
bcrypt = "0.11.0"
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|
|
mime_guess = "2.0.4"
|
|
askama = "0.11.1"
|
|
futures-util = "0.3.24"
|
|
urlencoding = "2.1.2"
|
|
rand = "0.8.5"
|
|
base64 = "0.13.0"
|
|
jwt-simple = "0.11.0"
|
|
digest = "0.10.3"
|
|
sha2 = "0.10.5"
|
|
lazy-regex = "2.3.0"
|
|
totp_rfc6238 = "0.5.0"
|
|
base32 = "0.4.0"
|
|
qrcode-generator = "4.1.6"
|
|
webauthn-rs = { version = "0.4.6", features = ["danger-allow-state-serialisation"] }
|
|
url = "2.2.2"
|
|
aes-gcm = { version = "0.10.1", features = ["aes"] }
|
|
bincode = "1.3.3"
|