20 lines
510 B
TOML
20 lines
510 B
TOML
[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]
|
|
actix = "0.13.0"
|
|
actix-web = "4"
|
|
clap = { version = "3.1.6", features = ["derive", "env"] }
|
|
include_dir = "0.7.2"
|
|
log = "0.4.16"
|
|
serde_json = "1.0.79"
|
|
env_logger = "0.9.0"
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
bcrypt = "0.12.1"
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|
|
mime_guess = "2.0.4"
|
|
askama = "0.11.1" |