Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Dec 9, 2024
1 parent ee0e608 commit 7008b96
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jwt-simple"
version = "0.12.10"
version = "0.12.11"
description = "Easy to use, secure, non opinionated JWT (JSON Web Tokens) implementation for Rust."
authors = ["Frank Denis <[email protected]>"]
edition = "2018"
Expand All @@ -12,31 +12,31 @@ keywords = ["jwt", "jws", "authentication", "tokens", "json"]
readme = "README.md"

[dependencies]
anyhow = "1.0.93"
anyhow = "1.0.94"
blake2b_simd = "1.0.2"
binstring = "0.1.1"
binstring = "0.1.2"
ciborium = { version = "0.2.2", optional = true }
coarsetime = "0.1.34"
ct-codecs = "1.1.2"
coarsetime = "0.1.35"
ct-codecs = "1.1.3"
ed25519-compact = { version = "2.1.1", features = ["pem"] }
hmac-sha1-compact = "1.1.4"
hmac-sha256 = { version = "1.1.7", features = ["traits010"] }
hmac-sha512 = { version = "1.1.5", features = ["traits010", "sha384"] }
hmac-sha1-compact = "1.1.5"
hmac-sha256 = { version = "1.1.8", features = ["traits010"] }
hmac-sha512 = { version = "1.1.6", features = ["traits010", "sha384"] }
k256 = { version = "0.13.4", features = ["ecdsa", "std", "pkcs8", "pem"] }
p256 = { version = "0.13.2", features = ["ecdsa", "std", "pkcs8", "pem"] }
p384 = { version = "0.13.0", features = ["ecdsa", "std", "pkcs8", "pem"] }
rand = "0.8.5"
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
thiserror = "2.0.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
thiserror = "2.0.6"
zeroize = "1.8.1"

[target.'cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))'.dependencies]
boring = { version = "4.11.0", optional = true }
superboring = { version = "0.1.3", optional = true }
boring = { version = "4.13.0", optional = true }
superboring = { version = "0.1.4", optional = true }

[target.'cfg(any(target_arch = "wasm32", target_arch = "wasm64"))'.dependencies]
superboring = { version = "0.1.3" }
superboring = { version = "0.1.4" }

[dev-dependencies]
benchmark-simple = "0.1.10"
Expand Down

0 comments on commit 7008b96

Please sign in to comment.