stackure 1.20260907.77

Official Stackure authentication SDK for Rust
Documentation
[package]
name = "stackure"
version = "1.20260907.77"
edition = "2024"
description = "Official Stackure authentication SDK for Rust"
license = "MIT"
repository = "https://github.com/syi-stackure/sdk-rust"
homepage = "https://stackure.com"
documentation = "https://docs.rs/stackure"
readme = "README.md"
keywords = ["authentication", "auth", "stackure", "passwordless", "sdk"]
categories = ["authentication", "web-programming"]

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

[lints.clippy]
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"

[features]
default = ["axum"]
# Reads the peer address from axum's ConnectInfo when X-Forwarded-For is absent.
axum = ["dep:axum"]

[dependencies]
axum = { version = "0.8", optional = true, default-features = false, features = ["tokio"] }
hyper = { version = "1", features = ["client", "http1"] }
hyper-util = { version = "0.1", features = ["client-legacy", "tokio", "http1"] }
hyper-rustls = { version = "0.27", default-features = false, features = ["http1", "native-tokio", "ring", "tls12"] }
http-body = "1"
http-body-util = "0.1"
http = "1"
tower = "0.5"
bytes = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["rt", "time"] }

[dev-dependencies]
axum = "0.8"
tokio = { version = "1", features = ["full"] }