2022-03-29 16:19:23 +00:00
|
|
|
[package]
|
|
|
|
name = "basic-oidc"
|
2023-01-23 15:43:40 +00:00
|
|
|
version = "0.1.4"
|
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]
|
2024-02-08 00:12:16 +00:00
|
|
|
actix = "0.13.3"
|
2024-03-03 00:11:13 +00:00
|
|
|
actix-identity = "0.7.1"
|
2024-02-19 17:42:19 +00:00
|
|
|
actix-web = "4.5.1"
|
2024-01-12 00:08:50 +00:00
|
|
|
actix-session = { version = "0.9.0", features = ["cookie-session"] }
|
2023-04-29 11:11:24 +00:00
|
|
|
actix-remote-ip = "0.1.0"
|
2024-03-26 00:22:42 +00:00
|
|
|
clap = { version = "4.5.4", features = ["derive", "env"] }
|
2022-10-18 00:25:47 +00:00
|
|
|
include_dir = "0.7.3"
|
2024-02-29 00:11:07 +00:00
|
|
|
log = "0.4.21"
|
2024-04-17 00:09:26 +00:00
|
|
|
serde_json = "1.0.116"
|
2024-03-25 16:09:06 +00:00
|
|
|
serde_yaml = "0.9.34"
|
2024-03-06 00:11:07 +00:00
|
|
|
env_logger = "0.11.3"
|
2024-05-02 00:03:22 +00:00
|
|
|
serde = { version = "1.0.200", features = ["derive"] }
|
2024-03-16 00:03:44 +00:00
|
|
|
bcrypt = "0.15.1"
|
2024-03-20 00:03:41 +00:00
|
|
|
uuid = { version = "1.8.0", features = ["v4"] }
|
2022-03-30 08:29:10 +00:00
|
|
|
mime_guess = "2.0.4"
|
2023-09-30 00:03:30 +00:00
|
|
|
askama = "0.12.1"
|
2023-12-25 00:17:43 +00:00
|
|
|
futures-util = "0.3.30"
|
2023-07-22 07:56:20 +00:00
|
|
|
urlencoding = "2.1.3"
|
2022-04-12 18:40:44 +00:00
|
|
|
rand = "0.8.5"
|
2024-05-01 00:03:18 +00:00
|
|
|
base64 = "0.22.1"
|
2024-02-21 00:11:15 +00:00
|
|
|
jwt-simple = { version = "0.12.9", default-features = false, features = ["pure-rust"] }
|
2023-05-23 09:45:41 +00:00
|
|
|
digest = "0.10.7"
|
2023-09-27 00:03:59 +00:00
|
|
|
sha2 = "0.10.8"
|
2023-11-10 00:28:42 +00:00
|
|
|
lazy-regex = "3.1.0"
|
2024-04-05 00:04:27 +00:00
|
|
|
totp_rfc6238 = "0.5.3"
|
2024-05-17 00:23:56 +00:00
|
|
|
base32 = "0.5.0"
|
2023-09-10 00:23:52 +00:00
|
|
|
qrcode-generator = "4.1.9"
|
2024-04-29 00:03:07 +00:00
|
|
|
webauthn-rs = { version = "0.5.0", features = ["danger-allow-state-serialisation"] }
|
2023-11-23 00:03:20 +00:00
|
|
|
url = "2.5.0"
|
2024-04-06 00:09:28 +00:00
|
|
|
light-openid = { version = "1.0.2", features = ["crypto-wrapper"] }
|
2023-04-28 08:29:04 +00:00
|
|
|
bincode = "2.0.0-rc.3"
|
2024-04-16 00:09:21 +00:00
|
|
|
chrono = "0.4.38"
|
2023-12-23 14:48:34 +00:00
|
|
|
lazy_static = "1.4.0"
|
2024-04-23 00:09:34 +00:00
|
|
|
mailchecker = "6.0.4"
|