openid-connect 0.0.1

A OpenID Connect implementation based on the `jose` crate
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 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 = "2021"
rust-version = "1.84"
name = "openid-connect"
version = "0.0.1"
authors = [
    "Erik Tesar <erik@erik-tesar.com>",
    "Justus K. <justus.k@protonmail.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A OpenID Connect implementation based on the `jose` crate"
homepage = "https://github.com/minkan-chat/openid-connect"
readme = "README.md"
keywords = [
    "jwt",
    "oauth2",
    "openid",
    "authentication",
]
categories = [
    "cryptography",
    "no-std",
    "authentication",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/minkan-chat/openid-connect.git"

[package.metadata.docs.rs]
features = [
    "crypto-rustcrypto",
    "std",
    "deterministic-ecdsa",
]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
crypto-aws-lc = ["jose/crypto-aws-lc"]
crypto-openssl = [
    "std",
    "jose/crypto-openssl",
]
crypto-openssl-vendored = ["jose/crypto-openssl-vendored"]
crypto-ring = ["jose/crypto-ring"]
crypto-rustcrypto = ["jose/crypto-rustcrypto"]
default = []
deterministic-ecdsa = ["jose/deterministic-ecdsa"]
std = ["jose/std"]

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

[dependencies.jose]
version = "0.0.2"
default-features = false

[dev-dependencies]