[package]
edition = "2021"
name = "harbor-sdk"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Add API key auth and billing to your Rust API in one line. Harbor handles validation so your users can authenticate with keys they manage from the Harbor dashboard."
homepage = "https://harbor-black.vercel.app"
documentation = "https://docs.rs/harbor-sdk"
readme = "README.md"
keywords = [
"api",
"authentication",
"middleware",
"billing",
"harbor",
]
categories = [
"web-programming",
"authentication",
"network-programming",
]
license = "MIT"
repository = "https://github.com/nicolugo0503-glitch/harbor-rust"
[features]
axum = ["dep:axum"]
default = []
full = ["axum"]
[lib]
name = "harbor_sdk"
path = "src/lib.rs"
[dependencies.axum]
version = "0.7"
optional = true
[dependencies.reqwest]
version = "0.11"
features = ["json"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = ["rt-multi-thread"]