Files
light-openid/Cargo.toml
Renovate Bot 85c7200eca
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
Update Rust crate reqwest to 0.13.0
2025-12-31 00:30:07 +00:00

29 lines
848 B
TOML

[package]
name = "light-openid"
version = "1.1.0"
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.21"
reqwest = { version = "0.13.0", features = ["json"] }
base64 = "0.22.0"
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.115"
urlencoding = "2.1.3"
thiserror = "2"
# Dependencies for crypto wrapper
rkyv = { version = "0.8.12", optional = true }
aes-gcm = { version = "0.10.3", optional = true }
rand = { version = "0.9.0", optional = true }
[features]
crypto-wrapper = ["rkyv", "aes-gcm", "rand"]