oidc-test-client/Cargo.toml

19 lines
566 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]
light-openid = { version = "1.0.1", features=["crypto-wrapper"] }
2023-06-12 00:23:55 +00:00
log = "0.4.19"
env_logger = "0.10.0"
2023-07-22 00:36:23 +00:00
clap = { version = "4.3.19", features = ["derive", "env"] }
lazy_static = "1.4.0"
actix-web = "4.3.1"
askama = "0.12.0"
2023-07-26 07:03:00 +00:00
serde = { version = "1.0.175", features = ["derive"] }
serde_json = "1.0.104"
2023-05-23 09:50:19 +00:00
reqwest = { version = "0.11.18", features = ["json"] }
actix-remote-ip = "0.1.0"