BasicOIDC/Cargo.toml
Pierre Hubert 6cc9f4c54c
All checks were successful
continuous-integration/drone/push Build is passing
Refactor dependencies to reduce code base size (#111)
Use crates to reduce code base size :

* `actix-remote-ip` to safely determine user IP location
* `light-openid` for the OpenID primitives & as client to handle federation

Reviewed-on: #111
2023-04-29 11:11:24 +00:00

41 lines
1.1 KiB
TOML

[package]
name = "basic-oidc"
version = "0.1.4"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix = "0.13.0"
actix-identity = "0.5.2"
actix-web = "4"
actix-session = { version = "0.7.2", features = ["cookie-session"] }
actix-remote-ip = "0.1.0"
clap = { version = "4.2.1", features = ["derive", "env"] }
include_dir = "0.7.3"
log = "0.4.17"
serde_json = "1.0.93"
serde_yaml = "0.9.16"
env_logger = "0.10.0"
serde = { version = "1.0.159", features = ["derive"] }
bcrypt = "0.14.0"
uuid = { version = "1.2.2", features = ["v4"] }
mime_guess = "2.0.4"
askama = "0.12.0"
futures-util = "0.3.28"
urlencoding = "2.1.2"
rand = "0.8.5"
base64 = "0.21.0"
jwt-simple = "0.11.4"
digest = "0.10.6"
sha2 = "0.10.6"
lazy-regex = "2.4.1"
totp_rfc6238 = "0.5.1"
base32 = "0.4.0"
qrcode-generator = "4.1.8"
webauthn-rs = { version = "0.4.8", features = ["danger-allow-state-serialisation"] }
url = "2.3.1"
light-openid = { version = "1.0.1", features=["crypto-wrapper"] }
bincode = "2.0.0-rc.3"
chrono = "0.4.24"
lazy_static = "1.4.0"