[package]
edition = "2024"
name = "camel-auth"
version = "0.12.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provider-neutral authentication and claim mapping for rust-camel"
homepage = "https://github.com/kennycallado/rust-camel"
documentation = "https://docs.rs/camel-auth"
readme = "README.md"
keywords = [
"camel",
"integration",
"messaging",
"routing",
"enterprise",
]
categories = [
"network-programming",
"asynchronous",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/kennycallado/rust-camel"
resolver = "2"
[lib]
name = "camel_auth"
path = "src/lib.rs"
[[test]]
name = "native_issuer"
path = "tests/native_issuer.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.camel-api]
version = "=0.12.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dashmap]
version = "6"
[dependencies.hex]
version = "0.4"
[dependencies.http]
version = "1"
[dependencies.jsonwebtoken]
version = "10"
features = ["aws_lc_rs"]
[dependencies.percent-encoding]
version = "2.3"
[dependencies.reqwest]
version = "0.13"
features = [
"rustls",
"stream",
"json",
"form",
]
default-features = false
[dependencies.rsa]
version = "0.9"
features = ["pem"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_urlencoded]
version = "0.7"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"full",
"sync",
"time",
]
[dependencies.tower]
version = "0.5"
features = ["util"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"macros",
"rt",
]
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy]
all = "warn"
[lints.rust]
dead_code = "warn"
unused_imports = "warn"
unused_must_use = "warn"