[package]
name = "truthlinked-sdk"
version = "0.1.4"
edition = "2021"
authors = ["Truthlinked <support@truthlinked.org>"]
description = "Official Rust SDK for Truthlinked Authority Fabric - Zero-trust authorization system"
license = "MIT OR Apache-2.0"
repository = "https://github.com/truth-linked/truthlinked-sdk"
homepage = "https://truthlinked.org"
documentation = "https://docs.rs/truthlinked-sdk"
readme = "README.md"
keywords = ["security", "authorization", "zero-trust", "iam", "authentication"]
categories = ["authentication", "cryptography", "api-bindings"]
exclude = ["typescript/"]
[dependencies]
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
zeroize = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = ["time"] }
chrono = { version = "0.4", features = ["serde"] }
hex = "0.4"
hmac = "0.12"
sha2 = "0.10"
base64 = "0.21"
tracing = "0.1"
rand = "0.8"
tracing-subscriber = { version = "0.3", optional = true }
[dev-dependencies]
tokio = { version = "1.0", features = ["full"] }
mockito = "1.0"
tracing-subscriber = "0.3"
tokio-test = "0.4"
[features]
default = ["rustls-tls"]
rustls-tls = []