oidc-test-client/Cargo.toml

23 lines
622 B
TOML
Raw Normal View History

2023-04-27 15:28:26 +00:00
[package]
name = "oidc-test-client"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.17"
env_logger = "0.10.0"
2023-04-27 17:17:05 +00:00
clap = { version = "4.2.4", features = ["derive", "env"] }
2023-04-27 16:21:43 +00:00
lazy_static = "1.4.0"
actix-web = "4.3.1"
2023-04-27 17:17:05 +00:00
askama = "0.12.0"
serde = { version = "1.0.160", features = ["derive"] }
2023-04-28 07:05:27 +00:00
serde_json = "1.0.96"
2023-04-27 17:17:05 +00:00
reqwest = { version = "0.11.16", features = ["json"] }
urlencoding = "2.1.2"
futures-util = "0.3.28"
aes-gcm = "0.10.1"
base64 = "0.21.0"
rand = "0.8.5"
bincode = {version="2.0.0-rc.3",features=["serde"]}