2022-03-29 16:19:23 +00:00
|
|
|
[package]
|
|
|
|
name = "basic-oidc"
|
|
|
|
version = "0.1.0"
|
|
|
|
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-03-30 14:58:00 +00:00
|
|
|
actix-identity = "0.4.0"
|
2022-03-30 08:14:39 +00:00
|
|
|
actix-web = "4"
|
2022-04-23 00:11:47 +00:00
|
|
|
clap = { version = "3.1.12", features = ["derive", "env"] }
|
2022-03-30 07:40:46 +00:00
|
|
|
include_dir = "0.7.2"
|
2022-03-29 17:32:31 +00:00
|
|
|
log = "0.4.16"
|
|
|
|
serde_json = "1.0.79"
|
2022-04-06 15:18:06 +00:00
|
|
|
serde_yaml = "0.8.23"
|
2022-03-29 17:32:31 +00:00
|
|
|
env_logger = "0.9.0"
|
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
2022-04-13 17:07:58 +00:00
|
|
|
bcrypt = "0.11.0"
|
2022-04-23 00:12:01 +00:00
|
|
|
uuid = { version = "1.0.0", 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-04-02 17:44:13 +00:00
|
|
|
futures-util = "0.3.21"
|
2022-04-07 16:59:48 +00:00
|
|
|
urlencoding = "2.1.0"
|
2022-04-12 18:40:44 +00:00
|
|
|
rand = "0.8.5"
|
2022-04-13 17:07:58 +00:00
|
|
|
base64 = "0.13.0"
|
2022-04-23 00:11:57 +00:00
|
|
|
jwt-simple = "0.11.0"
|
2022-04-14 16:04:01 +00:00
|
|
|
digest = "0.10.3"
|
2022-04-15 19:58:07 +00:00
|
|
|
sha2 = "0.10.2"
|
2022-04-19 07:56:51 +00:00
|
|
|
lazy-regex = "2.3.0"
|
|
|
|
totp_rfc6238 = "0.5.0"
|
|
|
|
base32 = "0.4.0"
|
2022-04-20 19:06:53 +00:00
|
|
|
qrcode-generator = "4.1.4"
|
|
|
|
webauthn-rs = "0.3.2"
|
|
|
|
url = "2.2.2"
|
|
|
|
aes-gcm = { version = "0.9.4", features = ["aes"] }
|
|
|
|
bincode = "1.3.3"
|