1
0
mirror of https://github.com/BitskiCo/jwk-rs synced 2024-11-22 03:49:22 +00:00
jwk-rs/Cargo.toml
Jacob Lee bf3dc9fb09
Update jsonwebtoken v8.0
Squashed commit of the following:

commit cb6264921e3918bef33358857360f83f7ba03080
Author: Christian Haynes <06chaynes@gmail.com>
Date:   Sat Feb 5 10:53:33 2022 -0500

    clippy fixes

commit 0df0aa3c594cb270f50d7e6854695db8921b7eff
Author: Christian Haynes <06chaynes@gmail.com>
Date:   Sat Feb 5 10:51:29 2022 -0500

    updated jsonwebtoken to v8.0
2022-04-01 19:23:50 -07:00

36 lines
1.1 KiB
TOML

[package]
name = "jsonwebkey"
version = "0.3.4"
authors = ["Nick Hynes <nhynes@nhynes.com>"]
description = "JSON Web Key (JWK) (de)serialization, generation, and conversion."
readme = "README.md"
repository = "https://github.com/nhynes/jwk-rs"
documentation = "http://docs.rs/jsonwebkey/"
license = "MIT"
edition = "2018"
[dependencies]
base64 = "0.13"
bitflags = "1.2"
generic-array = "0.14"
jsonwebtoken = { version = "8.0", optional = true }
num-bigint = { version = "0.4", optional = true }
p256 = { version = "0.9", optional = true, features = ["arithmetic"] }
rand = { version = "0.8", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
yasna = { version = "0.4", optional = true, features = ["num-bigint"] }
zeroize = { version = "1.4", features = ["zeroize_derive"] }
[features]
pkcs-convert = ["num-bigint", "yasna"]
jwt-convert = ["pkcs-convert", "jsonwebtoken"]
generate = ["p256", "rand"]
[dev-dependencies]
jsonwebtoken = "8.0"
[package.metadata.docs.rs]
all-features = true