2022-03-29 16:19:23 +00:00
|
|
|
[package]
|
|
|
|
name = "basic-oidc"
|
2022-08-25 06:06:06 +00:00
|
|
|
version = "0.1.3"
|
2022-03-29 16:19:23 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-03-30 09:40:03 +00:00
|
|
|
actix = "0.13.0"
|
2022-07-22 10:21:38 +00:00
|
|
|
actix-identity = "0.5.2"
|
2022-03-30 08:14:39 +00:00
|
|
|
actix-web = "4"
|
2022-09-20 00:29:04 +00:00
|
|
|
actix-session = { version = "0.7.2", features = ["cookie-session"] }
|
2022-11-10 00:16:55 +00:00
|
|
|
clap = { version = "4.0.22", features = ["derive", "env"] }
|
2022-10-18 00:25:47 +00:00
|
|
|
include_dir = "0.7.3"
|
2022-05-14 00:09:12 +00:00
|
|
|
log = "0.4.17"
|
2022-10-25 00:27:29 +00:00
|
|
|
serde_json = "1.0.87"
|
2022-11-04 00:30:59 +00:00
|
|
|
serde_yaml = "0.9.14"
|
2022-09-20 00:29:11 +00:00
|
|
|
env_logger = "0.9.1"
|
2022-10-25 00:27:24 +00:00
|
|
|
serde = { version = "1.0.147", features = ["derive"] }
|
2022-10-16 13:07:03 +00:00
|
|
|
bcrypt = "0.13.0"
|
2022-11-16 00:09:04 +00:00
|
|
|
uuid = { version = "1.2.2", features = ["v4"] }
|
2022-03-30 08:29:10 +00:00
|
|
|
mime_guess = "2.0.4"
|
2022-03-30 14:58:00 +00:00
|
|
|
askama = "0.11.1"
|
2022-10-25 00:27:19 +00:00
|
|
|
futures-util = "0.3.25"
|
2022-09-09 17:45:02 +00:00
|
|
|
urlencoding = "2.1.2"
|
2022-04-12 18:40:44 +00:00
|
|
|
rand = "0.8.5"
|
2022-10-25 00:27:09 +00:00
|
|
|
base64 = "0.13.1"
|
2022-11-04 00:30:56 +00:00
|
|
|
jwt-simple = "0.11.2"
|
2022-10-25 00:27:16 +00:00
|
|
|
digest = "0.10.5"
|
2022-09-17 00:27:38 +00:00
|
|
|
sha2 = "0.10.6"
|
2022-11-10 00:17:06 +00:00
|
|
|
lazy-regex = "2.3.1"
|
2022-10-16 00:26:35 +00:00
|
|
|
totp_rfc6238 = "0.5.1"
|
2022-04-19 07:56:51 +00:00
|
|
|
base32 = "0.4.0"
|
2022-04-29 00:03:36 +00:00
|
|
|
qrcode-generator = "4.1.6"
|
2022-11-16 00:09:06 +00:00
|
|
|
webauthn-rs = { version = "0.4.8", features = ["danger-allow-state-serialisation"] }
|
2022-10-25 00:27:40 +00:00
|
|
|
url = "2.3.1"
|
2022-08-20 07:30:36 +00:00
|
|
|
aes-gcm = { version = "0.10.1", features = ["aes"] }
|
2022-09-01 07:40:38 +00:00
|
|
|
bincode = "1.3.3"
|
2022-11-12 16:01:45 +00:00
|
|
|
chrono = "0.4.22"
|
|
|
|
lazy_static = "1.4.0"
|