jwt-compact 0.1.0

Minimalistic JWT implementation with focus on type safety and secure cryptographic primitives
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "jwt-compact"
version = "0.1.0"
authors = ["Alex Ostrovski <ostrovski.alex@gmail.com>"]
description = "Minimalistic JWT implementation with focus on type safety and secure cryptographic primitives"
readme = "README.md"
keywords = ["JWT", "token", "authorization"]
categories = ["web-programming", "cryptography"]
license = "Apache-2.0"
repository = "https://github.com/slowli/jwt-compact"
[package.metadata.docs.rs]
features = ["secp256k1"]
[dependencies.base64]
version = "0.10.1"

[dependencies.chrono]
version = "0.4.7"

[dependencies.clear_on_drop]
version = "0.2.3"

[dependencies.ed25519-dalek]
version = "1.0.0-pre.1"
optional = true

[dependencies.exonum-crypto]
version = "0.11.0"
optional = true

[dependencies.failure]
version = "0.1.5"

[dependencies.failure_derive]
version = "0.1.5"

[dependencies.hmac]
version = "0.7.0"

[dependencies.rand_core]
version = "0.4.0"

[dependencies.secp256k1]
version = "0.13.0"
optional = true

[dependencies.serde]
version = "1.0"

[dependencies.serde_cbor]
version = "0.9.0"

[dependencies.serde_derive]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.8.0"

[dependencies.smallvec]
version = "0.6.10"
[dev-dependencies.assert_matches]
version = "1.3.0"

[dev-dependencies.hex]
version = "0.3.2"

[dev-dependencies.hex-buffer-serde]
version = "0.2.0"

[dev-dependencies.rand]
version = "0.6.5"

[features]
default = ["exonum-crypto"]