Compare commits

...

3 Commits

Author SHA1 Message Date
042ac0e1c3 Update Rust crate reqwest to 0.12.3
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2024-04-06 00:12:04 +00:00
9c45de0bcc Bump to version 1.0.2
All checks were successful
continuous-integration/drone/push Build is passing
2024-04-05 08:06:43 +02:00
1dec244b3b Update dependencies
All checks were successful
continuous-integration/drone/push Build is passing
2024-04-05 08:05:41 +02:00
2 changed files with 282 additions and 374 deletions

644
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
[package]
name = "light-openid"
version = "1.0.1"
version = "1.0.2"
edition = "2021"
repository = "https://gitea.communiquons.org/pierre/light-openid"
authors = ["Pierre HUBERT <pierre.git@communiquons.org>"]
@@ -11,11 +11,11 @@ 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"
log = "0.4.21"
reqwest = { version = "0.12.3", features = ["json"] }
base64 = "0.22.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.105"
serde_json = "1.0.115"
urlencoding = "2.1.3"
# Dependencies for crypto wrapper
@@ -24,4 +24,4 @@ aes-gcm = { version = "0.10.3", optional = true }
rand = { version = "0.8.5", optional = true }
[features]
crypto-wrapper = ["bincode", "aes-gcm", "rand"]
crypto-wrapper = ["bincode", "aes-gcm", "rand"]