light-openid/Cargo.toml
Pierre Hubert bc056ae89d
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
Update Rust crate reqwest to 0.12.2
2024-03-26 00:25:44 +00:00

27 lines
841 B
TOML

[package]
name = "light-openid"
version = "1.0.1"
edition = "2021"
repository = "https://gitea.communiquons.org/pierre/light-openid"
authors = ["Pierre HUBERT <pierre.git@communiquons.org>"]
readme = "README.md"
description = "Lightweight OpenID primitives & client"
license = "GPL-2.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.20"
reqwest = { version = "0.12.2", features = ["json"] }
base64 = "0.21.2"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.105"
urlencoding = "2.1.3"
# Dependencies for crypto wrapper
bincode = { version = "2.0.0-rc.3", optional = true }
aes-gcm = { version = "0.10.3", optional = true }
rand = { version = "0.8.5", optional = true }
[features]
crypto-wrapper = ["bincode", "aes-gcm", "rand"]