[package]
name = "voidnote"
version = "0.2.0"
edition = "2021"
description = "Official Rust SDK for VoidNote — zero-knowledge self-destructing notes"
license = "MIT"
repository = "https://github.com/quantum-encoding/voidnote-rust"
keywords = ["voidnote", "encryption", "zero-knowledge", "self-destructing", "notes"]
categories = ["cryptography", "web-programming::http-client"]
readme = "README.md"
[lib]
name = "voidnote"
path = "src/lib.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls"] }
aes-gcm = "0.10"
sha2 = "0.10"
hex = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
futures-core = "0.3"
futures = "0.3"
async-stream = "0.3"
bytes = "1"
[dev-dependencies]
tokio-test = "0.4"