jwk_kit 0.1.2

A Rust Library for JSON Web Keys (JWK)
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 = "2024"
name = "jwk_kit"
version = "0.1.2"
authors = ["Jerry Maheswara  <jerrymaheswara@gmail.com>"]
build = false
exclude = [
    "/.github",
    "/.gitignore",
    "/.vscode",
    "/target",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust Library for JSON Web Keys (JWK)"
documentation = "https://docs.rs/jwk_kit"
readme = "README.md"
keywords = [
    "jwk",
    "jwt",
    "crypto",
    "json",
    "web",
]
categories = [
    "authentication",
    "cryptography",
    "web-programming",
]
license = "Apache-2.0"
repository = "https://github.com/jerry-maheswara-github/jwk_kit"

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

[[example]]
name = "basic_jwks"
path = "examples/basic_jwks.rs"

[[example]]
name = "basic_pem_ecdsa"
path = "examples/basic_pem_ecdsa.rs"

[[example]]
name = "basic_pem_rsa"
path = "examples/basic_pem_rsa.rs"

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

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

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

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

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

[dependencies.base64]
version = "0.22.1"

[dependencies.p256]
version = "0.13.2"

[dependencies.rand_core]
version = "0.9.3"

[dependencies.rsa]
version = "0.9.8"

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

[dependencies.serde_json]
version = "1.0.140"

[dependencies.thiserror]
version = "2.0.12"