1
0
mirror of https://github.com/BitskiCo/jwk-rs synced 2024-11-22 03:49:22 +00:00
jwk-rs/Cargo.toml

37 lines
1.1 KiB
TOML
Raw Normal View History

2020-07-12 18:57:57 +00:00
[package]
name = "jsonwebkey"
2021-01-25 17:11:01 +00:00
version = "0.3.0"
2020-07-12 18:57:57 +00:00
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"
license = "MIT"
edition = "2018"
[dependencies]
2021-01-25 17:11:01 +00:00
base64 = "0.12"
bitflags = "1.2"
derive_more = "0.99"
generic-array = "0.14"
jsonwebtoken = { version = "7.2", optional = true }
num-bigint = { version = "0.2", optional = true }
p256 = { version = "0.3", optional = true }
rand = { version = "0.7", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
syn = { version = "1.0", features = ["full"] } # required to parse const generics
thiserror = "1.0"
yasna = { version = "0.3", optional = true, features = ["num-bigint"] }
zeroize = { version = "1.1", features = ["zeroize_derive"] }
2020-07-12 21:23:06 +00:00
[features]
2020-07-16 02:32:11 +00:00
pkcs-convert = ["num-bigint", "yasna"]
2021-01-25 17:11:01 +00:00
jwt-convert = ["pkcs-convert", "jsonwebtoken"]
generate = ["p256", "rand"]
2020-07-13 20:46:42 +00:00
[dev-dependencies]
jsonwebtoken = "7.2"
2021-01-25 17:11:01 +00:00
[package.metadata.docs.rs]
all-features = true