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]
|
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"] }
|
2023-04-29 11:11:24 +00:00
|
|
|
actix-remote-ip = "0.1.0"
|
2023-07-22 00:29:14 +00:00
|
|
|
clap = { version = "4.3.19", features = ["derive", "env"] }
|
2022-10-18 00:25:47 +00:00
|
|
|
include_dir = "0.7.3"
|
2023-06-12 00:18:45 +00:00
|
|
|
log = "0.4.19"
|
2023-07-22 07:56:14 +00:00
|
|
|
serde_json = "1.0.103"
|
2023-07-21 00:29:19 +00:00
|
|
|
serde_yaml = "0.9.25"
|
2022-11-26 00:30:14 +00:00
|
|
|
env_logger = "0.10.0"
|
2023-07-26 06:58:43 +00:00
|
|
|
serde = { version = "1.0.175", features = ["derive"] }
|
2023-07-21 00:29:25 +00:00
|
|
|
bcrypt = "0.15.0"
|
2023-07-18 00:08:26 +00:00
|
|
|
uuid = { version = "1.4.1", features = ["v4"] }
|
2022-03-30 08:29:10 +00:00
|
|
|
mime_guess = "2.0.4"
|
2023-04-15 10:19:15 +00:00
|
|
|
askama = "0.12.0"
|
2023-04-28 00:18:34 +00:00
|
|
|
futures-util = "0.3.28"
|
2023-07-22 07:56:20 +00:00
|
|
|
urlencoding = "2.1.3"
|
2022-04-12 18:40:44 +00:00
|
|
|
rand = "0.8.5"
|
2023-05-26 00:29:15 +00:00
|
|
|
base64 = "0.21.2"
|
2023-07-16 00:07:47 +00:00
|
|
|
jwt-simple = "0.11.6"
|
2023-05-23 09:45:41 +00:00
|
|
|
digest = "0.10.7"
|
2023-06-16 00:19:00 +00:00
|
|
|
sha2 = "0.10.7"
|
2023-07-08 00:08:04 +00:00
|
|
|
lazy-regex = "3.0.0"
|
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"
|
2023-04-15 08:07:58 +00:00
|
|
|
qrcode-generator = "4.1.8"
|
2022-11-16 00:09:06 +00:00
|
|
|
webauthn-rs = { version = "0.4.8", features = ["danger-allow-state-serialisation"] }
|
2023-06-06 00:19:10 +00:00
|
|
|
url = "2.4.0"
|
2023-04-29 11:11:24 +00:00
|
|
|
light-openid = { version = "1.0.1", features=["crypto-wrapper"] }
|
2023-04-28 08:29:04 +00:00
|
|
|
bincode = "2.0.0-rc.3"
|
2023-05-31 00:29:31 +00:00
|
|
|
chrono = "0.4.26"
|
2023-04-29 11:11:24 +00:00
|
|
|
lazy_static = "1.4.0"
|