Compare commits

..

8 Commits

Author SHA1 Message Date
56afbf61fc Merge pull request 'Update Rust crate anyhow to 1.0.102' (#49) from renovate/anyhow-1.x into master
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-22 00:11:05 +00:00
9685ed3244 Update Rust crate anyhow to 1.0.102
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2026-02-21 00:11:46 +00:00
c60b9374ad Merge pull request 'Update Rust crate anyhow to 1.0.101' (#48) from renovate/anyhow-1.x into master
All checks were successful
continuous-integration/drone/push Build is passing
2026-02-07 00:23:05 +00:00
97d5956b89 Update Rust crate anyhow to 1.0.101
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2026-02-06 00:23:24 +00:00
e8ec1595b6 Merge pull request 'Update Rust crate jsonwebtoken to 10.3.0' (#47) from renovate/jsonwebtoken-10.x into master
All checks were successful
continuous-integration/drone/push Build is passing
2026-01-29 00:23:03 +00:00
d61ce494a4 Update Rust crate jsonwebtoken to 10.3.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2026-01-28 00:23:20 +00:00
85c83fe0ce Merge pull request 'Update Rust crate jsonwebtoken to 10.2.0' (#46) from renovate/jsonwebtoken-10.x into master
All checks were successful
continuous-integration/drone/push Build is passing
2025-11-09 00:06:43 +00:00
7cebe0e68b Update Rust crate jsonwebtoken to 10.2.0
Some checks are pending
continuous-integration/drone/push Build is pending
continuous-integration/drone/pr Build is passing
2025-11-07 00:07:23 +00:00
2 changed files with 6 additions and 6 deletions

8
Cargo.lock generated
View File

@@ -4,9 +4,9 @@ version = 4
[[package]] [[package]]
name = "anyhow" name = "anyhow"
version = "1.0.100" version = "1.0.102"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
[[package]] [[package]]
name = "autocfg" name = "autocfg"
@@ -304,9 +304,9 @@ dependencies = [
[[package]] [[package]]
name = "jsonwebtoken" name = "jsonwebtoken"
version = "10.1.0" version = "10.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d119c6924272d16f0ab9ce41f7aa0bfef9340c00b0bb7ca3dd3b263d4a9150b" checksum = "0529410abe238729a60b108898784df8984c87f6054c9c4fcacc47e4803c1ce1"
dependencies = [ dependencies = [
"base64", "base64",
"ed25519-dalek", "ed25519-dalek",

View File

@@ -13,7 +13,7 @@ readme = "README.md"
[dependencies] [dependencies]
serde = { version = "1.0.228", features = ["derive"] } serde = { version = "1.0.228", features = ["derive"] }
anyhow = "1.0.100" anyhow = "1.0.102"
elliptic-curve = { version = "0.13.8", features = ["pkcs8", "pem"] } elliptic-curve = { version = "0.13.8", features = ["pkcs8", "pem"] }
p384 = { version = "0.13.1", features = ["ecdsa", "pkcs8", "pem"] } p384 = { version = "0.13.1", features = ["ecdsa", "pkcs8", "pem"] }
jsonwebtoken = { version = "10.1.0", features = ["rust_crypto"] } jsonwebtoken = { version = "10.3.0", features = ["rust_crypto"] }