BasicOIDC/Cargo.toml

38 lines
957 B
TOML
Raw Normal View History

2022-03-29 18:19:23 +02:00
[package]
name = "basic-oidc"
2022-08-25 08:06:06 +02:00
version = "0.1.3"
2022-03-29 18:19:23 +02:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-03-30 11:40:03 +02:00
actix = "0.13.0"
2022-07-22 12:21:38 +02:00
actix-identity = "0.5.2"
2022-03-30 10:14:39 +02:00
actix-web = "4"
2022-08-24 13:42:05 +02:00
actix-session = { version = "0.7.1", features = ["cookie-session"] }
clap = { version = "3.2.17", features = ["derive", "env"] }
2022-03-30 09:40:46 +02:00
include_dir = "0.7.2"
2022-05-14 00:09:12 +00:00
log = "0.4.17"
2022-08-24 13:42:05 +02:00
serde_json = "1.0.85"
serde_yaml = "0.9.10"
env_logger = "0.9.0"
2022-08-24 13:42:05 +02:00
serde = { version = "1.0.144", features = ["derive"] }
2022-04-13 19:07:58 +02:00
bcrypt = "0.11.0"
2022-06-11 00:10:25 +00:00
uuid = { version = "1.1.2", features = ["v4"] }
2022-03-30 10:29:10 +02:00
mime_guess = "2.0.4"
2022-03-30 16:58:00 +02:00
askama = "0.11.1"
futures-util = "0.3.23"
2022-04-07 18:59:48 +02:00
urlencoding = "2.1.0"
2022-04-12 20:40:44 +02:00
rand = "0.8.5"
2022-04-13 19:07:58 +02:00
base64 = "0.13.0"
2022-04-23 00:11:57 +00:00
jwt-simple = "0.11.0"
2022-04-14 18:04:01 +02:00
digest = "0.10.3"
sha2 = "0.10.2"
lazy-regex = "2.3.0"
totp_rfc6238 = "0.5.0"
base32 = "0.4.0"
qrcode-generator = "4.1.6"
2022-09-01 00:19:13 +00:00
webauthn-rs = "0.4.5"
url = "2.2.2"
2022-08-20 09:30:36 +02:00
aes-gcm = { version = "0.10.1", features = ["aes"] }
bincode = "1.3.3"