bdo-rs 0.0.1

Rust client SDK for BDO (Blockchain Data Objects) - a Planet Nine microservice for persistent data storage with cryptographic authentication
Documentation
[package]
name = "bdo-rs"
version = "0.0.1"
edition = "2021"
authors = ["planetnineisaspaceship"]
description = "Rust client SDK for BDO (Blockchain Data Objects) - a Planet Nine microservice for persistent data storage with cryptographic authentication"
license = "MIT OR Apache-2.0"
repository = "https://github.com/planet-nine-app/bdo"
homepage = "https://planetnine.app"
documentation = "https://docs.rs/bdo-rs"
keywords = ["storage", "sessionless", "cryptography", "planet-nine", "api"]
categories = ["api-bindings", "cryptography", "web-programming"]
readme = "README.md"

[dependencies]
sessionless = "0.1.1"
reqwest = { version = "0.12.4", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
urlencoding = "2.1"
tokio = { version = "1", features = ["rt"], optional = true }

[dev-dependencies]
actix-rt = "2.9"
tokio = { version = "1", features = ["full"] }

[features]
default = []
blocking = ["reqwest/blocking"]