[package]
edition = "2021"
name = "stackure"
version = "1.20260417.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official Stackure authentication SDK for Rust"
homepage = "https://stackure.com"
documentation = "https://docs.rs/stackure"
readme = "README.md"
keywords = [
"authentication",
"auth",
"stackure",
"passwordless",
"sdk",
]
categories = [
"authentication",
"web-programming",
]
license = "MIT"
repository = "https://github.com/syi-stackure/sdk-rust"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "stackure"
path = "src/lib.rs"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"cookies",
"json",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
"time",
]
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"