light-openid/Cargo.toml

28 lines
842 B
TOML
Raw Normal View History

2023-04-28 17:03:56 +00:00
[package]
name = "light-openid"
2024-04-05 06:06:43 +00:00
version = "1.0.2"
2023-04-28 17:03:56 +00:00
edition = "2021"
repository = "https://gitea.communiquons.org/pierre/light-openid"
authors = ["Pierre HUBERT <pierre.git@communiquons.org>"]
readme = "README.md"
2023-04-29 07:52:17 +00:00
description = "Lightweight OpenID primitives & 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]
2024-04-05 06:05:41 +00:00
log = "0.4.21"
2024-04-06 00:12:04 +00:00
reqwest = { version = "0.12.3", features = ["json"] }
2024-04-05 06:05:41 +00:00
base64 = "0.22.0"
2024-03-16 00:06:53 +00:00
serde = { version = "1.0.197", features = ["derive"] }
2024-04-05 06:05:41 +00:00
serde_json = "1.0.115"
2023-07-22 00:34:29 +00:00
urlencoding = "2.1.3"
# Dependencies for crypto wrapper
bincode = { version = "2.0.0-rc.3", optional = true }
2023-09-22 00:09:15 +00:00
aes-gcm = { version = "0.10.3", optional = true }
rand = { version = "0.8.5", optional = true }
[features]
2024-04-05 06:05:41 +00:00
crypto-wrapper = ["bincode", "aes-gcm", "rand"]