oidc-test-client/Cargo.toml

19 lines
564 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"] }
2024-02-29 00:13:02 +00:00
log = "0.4.21"
2024-03-23 00:27:23 +00:00
env_logger = "0.11.3"
2024-03-26 00:26:48 +00:00
clap = { version = "4.5.4", features = ["derive", "env"] }
lazy_static = "1.4.0"
2024-02-05 00:32:41 +00:00
actix-web = "4.5.1"
2023-09-30 00:10:12 +00:00
askama = "0.12.1"
2024-03-16 00:08:10 +00:00
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
2024-04-06 00:13:02 +00:00
reqwest = { version = "0.12.3", features = ["json"] }
actix-remote-ip = "0.1.0"