diff --git a/Cargo.toml b/Cargo.toml index 856283e..878a431 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["jwt", "jws", "authentication", "tokens", "json"] readme = "README.md" [dependencies] -anyhow = "1.0.86" +anyhow = "1.0.91" blake2b_simd = "1.0.2" binstring = "0.1.1" ciborium = { version = "0.2.2", optional = true } @@ -22,21 +22,21 @@ 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"] } -k256 = { version = "0.13.3", features = ["ecdsa", "std", "pkcs8", "pem"] } +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.209", features = ["derive"] } -serde_json = "1.0.127" -thiserror = "1.0.63" +serde = { version = "1.0.213", features = ["derive"] } +serde_json = "1.0.132" +thiserror = "1.0.65" zeroize = "1.8.1" [target.'cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))'.dependencies] -boring = { version = "4.9.1", optional = true } -superboring = { version = "0.1.2", optional = true } +boring = { version = "4.11.0", optional = true } +superboring = { version = "0.1.3", optional = true } [target.'cfg(any(target_arch = "wasm32", target_arch = "wasm64"))'.dependencies] -superboring = { version = "0.1.2" } +superboring = { version = "0.1.3" } [dev-dependencies] benchmark-simple = "0.1.9"