[package]
edition = "2021"
name = "getlocksmith"
version = "3.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Official async Rust client for the Locksmith public authentication API (JWT, OAuth, magic links)."
homepage = "https://getlocksmith.dev"
documentation = "https://docs.rs/getlocksmith"
readme = "README.md"
keywords = [
"locksmith",
"auth",
"jwt",
"oauth",
"api-client",
]
categories = [
"api-bindings",
"authentication",
"web-programming",
]
license = "MIT"
repository = "https://github.com/locksmith-app/sdk-rust"
[lib]
name = "getlocksmith"
path = "src/lib.rs"
[dependencies.jsonwebtoken]
version = "9"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.urlencoding]
version = "2"