[package]
edition = "2021"
name = "elastik"
version = "0.0.1"
authors = ["Ranger Chen"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client for elastik — pastebin with HMAC that accidentally became a web OS."
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",
]
license = "MIT"
repository = "https://github.com/rangersui/Elastik"
[features]
async = []
blocking = []
default = ["blocking"]
[lib]
name = "elastik"
path = "src/lib.rs"
[[example]]
name = "smoke"
path = "examples/smoke.rs"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"blocking",
"json",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"