BasicOIDC/Cargo.toml

41 lines
1.1 KiB
TOML
Raw Normal View History

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]
2023-08-31 00:23:12 +00:00
actix = "0.13.1"
actix-identity = "0.6.0"
2022-03-30 08:14:39 +00:00
actix-web = "4"
actix-session = { version = "0.8.0", features = ["cookie-session"] }
actix-remote-ip = "0.1.0"
2023-12-06 00:13:40 +00:00
clap = { version = "4.4.11", features = ["derive", "env"] }
2022-10-18 00:25:47 +00:00
include_dir = "0.7.3"
2023-08-23 00:31:42 +00:00
log = "0.4.20"
serde_json = "1.0.108"
2023-12-22 00:15:36 +00:00
serde_yaml = "0.9.29"
2023-11-11 00:22:34 +00:00
env_logger = "0.10.1"
2023-11-29 00:04:14 +00:00
serde = { version = "1.0.193", features = ["derive"] }
2023-07-21 00:29:25 +00:00
bcrypt = "0.15.0"
2023-11-21 00:03:26 +00:00
uuid = { version = "1.6.1", 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"
futures-util = "0.3.29"
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-11-29 00:03:49 +00:00
base64 = "0.21.5"
2023-12-06 00:13:55 +00:00
jwt-simple = "0.12.1"
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"
totp_rfc6238 = "0.5.1"
base32 = "0.4.0"
qrcode-generator = "4.1.9"
2022-11-16 00:09:06 +00:00
webauthn-rs = { version = "0.4.8", features = ["danger-allow-state-serialisation"] }
2023-11-23 00:03:20 +00:00
url = "2.5.0"
light-openid = { version = "1.0.1", features=["crypto-wrapper"] }
bincode = "2.0.0-rc.3"
2023-09-16 00:03:47 +00:00
chrono = "0.4.31"
lazy_static = "1.4.0"