[package]
edition = "2024"
name = "mildly-basic-auth"
version = "0.3.0"
authors = ["Quentin Richert <noreply@richert.co>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Basic auth with nicer UX."
readme = "README.md"
keywords = [
"authentication",
"password",
"basic-auth",
"password-wall",
"reverse-proxy",
]
categories = [
"authentication",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/qrichert/mildly-basic-auth.git"
[lib]
name = "mildly_basic_auth"
path = "src/lib.rs"
[[bin]]
name = "mildly-basic-auth"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.axum]
version = "0.8.9"
[dependencies.axum-reverse-proxy]
version = "1.3.0"
[dependencies.blake3]
version = "1.8.5"
[dependencies.cookie]
version = "0.18.1"
features = ["percent-encode"]
[dependencies.form_urlencoded]
version = "1.2.2"
[dependencies.tokio]
version = "1.52.3"
features = [
"rt-multi-thread",
"macros",
"net",
]
[dev-dependencies.reqwest]
version = "0.13.4"
default-features = false
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin_include)"]
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true