2023-04-28 17:03:56 +00:00
|
|
|
[package]
|
|
|
|
name = "light-openid"
|
2023-04-29 07:52:17 +00:00
|
|
|
version = "1.0.1"
|
2023-04-28 17:03:56 +00:00
|
|
|
edition = "2021"
|
2023-04-29 07:49:35 +00:00
|
|
|
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"
|
2023-04-29 07:49:35 +00:00
|
|
|
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-06-12 00:22:42 +00:00
|
|
|
log = "0.4.19"
|
2023-05-24 00:33:07 +00:00
|
|
|
reqwest = { version = "0.11.18", features = ["json"] }
|
2023-05-26 00:31:57 +00:00
|
|
|
base64 = "0.21.2"
|
2023-07-22 00:34:20 +00:00
|
|
|
serde = { version = "1.0.174", features = ["derive"] }
|
2023-07-16 00:12:32 +00:00
|
|
|
serde_json = "1.0.103"
|
2023-04-29 07:49:35 +00:00
|
|
|
urlencoding = "2.1.2"
|
|
|
|
|
|
|
|
# Dependencies for crypto wrapper
|
|
|
|
bincode = { version = "2.0.0-rc.3", optional = true }
|
2023-05-23 09:48:30 +00:00
|
|
|
aes-gcm = { version = "0.10.2", optional = true }
|
2023-04-29 07:49:35 +00:00
|
|
|
rand = { version = "0.8.5", optional = true }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
crypto-wrapper = ["bincode", "aes-gcm", "rand"]
|