[package]
edition = "2024"
name = "hashiverse-client-rust"
version = "1.0.8"
authors = ["James Jardine <mail@jimme.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Friendly Rust client wrapper for Hashiverse — your open-source decentralized X/Twitter replacement. Picks sensible defaults (sqlite storage, disk key locker, DNSSEC-validated bootstrap, native parallel PoW) so you can spin up a working client in a few lines."
homepage = "https://www.hashiverse.com"
readme = "README.md"
keywords = [
"hashiverse",
"p2p",
"decentralized",
"social-media",
"social",
]
categories = [
"network-programming",
"cryptography",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hashiverse/hashiverse"
resolver = "2"
[lib]
name = "hashiverse_client_rust"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.bytes]
version = "1.11.1"
features = ["serde"]
[dependencies.dirs-next]
version = "2.0"
[dependencies.hashiverse-lib]
version = "1.0.8"
[dependencies.hex]
version = "0.4.3"
[dependencies.log]
version = "0.4.29"
[dependencies.rustls]
version = "0.23"
features = ["ring"]
[dependencies.shellexpand]
version = "3"
[dependencies.tokio]
version = "1.45"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.tempfile]
version = "3.25.0"
[lints.clippy]
collapsible_else_if = "allow"
collapsible_if = "allow"
collapsible_match = "allow"
module_inception = "allow"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tokio_unstable)"]