azure_jwt 0.4.2

A simple JWT validator for Microsoft Azure Id tokens.
# 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 are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
name = "azure_jwt"
version = "0.4.2"
authors = ["Carl Fredrik Samson <cf@samson.no>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A simple JWT validator for Microsoft Azure Id tokens.\r
"""
documentation = "https://docs.rs/azure-jwt/"
readme = "README.md"
keywords = [
    "azure",
    "token",
    "jwt",
    "jwk",
    "validation",
]
categories = ["authentication"]
license = "MIT"
repository = "https://github.com/cfsamson/azure-jwt"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
async = ["dep:reqwest"]
blocking = ["reqwest/blocking"]
default = [
    "blocking",
    "async",
]

[lib]
name = "azure_jwt"
path = "src/lib.rs"

[[test]]
name = "azure"
path = "tests/azure.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[bench]]
name = "validation"
path = "benches/validation.rs"
harness = false

[dependencies.chrono]
version = "0.4"

[dependencies.jsonwebtoken]
version = "9"
features = ["use_pem"]
default-features = false

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "rustls-tls",
]
optional = true
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.base64]
version = "0.22.0"

[dev-dependencies.criterion]
version = "0.3.4"