[package]
name = "elastik"
version = "0.0.1"
edition = "2021"
description = "Rust client for elastik — pastebin with HMAC that accidentally became a web OS."
license = "MIT"
repository = "https://github.com/rangersui/Elastik"
homepage = "https://github.com/rangersui/Elastik"
documentation = "https://docs.rs/elastik"
readme = "README.md"
keywords = ["http", "pastebin", "local-first", "ai", "web-os"]
categories = ["web-programming::http-client", "api-bindings"]
authors = ["Ranger Chen"]
[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "blocking", "json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
[features]
default = ["blocking"]
blocking = []
async = []
[lib]
path = "src/lib.rs"