light-openid/Cargo.toml

27 lines
846 B
TOML
Raw Normal View History

2023-04-28 17:03:56 +00:00
[package]
name = "light-openid"
2023-04-29 07:01:58 +00:00
version = "0.3.0-alpha"
2023-04-28 17:03:56 +00:00
edition = "2021"
2023-04-28 17:29:39 +00:00
repository = "https://gitea.communiquons.org/pierre/light-openid"
authors = ["Pierre HUBERT <pierre.git@communiquons.org>"]
readme = "README.md"
description = "Lightweight OpenID primitves & client"
license = "GPL-2.0-or-later"
2023-04-28 17:03:56 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-04-28 17:22:49 +00:00
log = "0.4.17"
reqwest = { version = "0.11.17", features = ["json"] }
base64 = "0.21.0"
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
urlencoding = "2.1.2"
# Dependencies for crypto wrapper
bincode = { version = "2.0.0-rc.3", optional = true }
aes-gcm = { version = "0.10.1", optional = true }
rand = { version = "0.8.5", optional = true }
[features]
crypto-wrapper = ["bincode", "aes-gcm", "rand"]