[package]
edition = "2021"
rust-version = "1.75"
name = "trust-store"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Web of Trust with TOFU key verification and social graph attestation for P2P networks"
homepage = "https://ghostwire.org"
readme = "README.md"
keywords = [
"trust",
"web-of-trust",
"tofu",
"p2p",
"identity",
]
categories = [
"cryptography",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Phantomojo/GhostWire-secure-mesh-communication"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["std"]
std = []
[lib]
name = "trust_store"
path = "src/lib.rs"
[dependencies.hex]
version = "0.4"
[dependencies.ring]
version = "0.17"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = [
"sync",
"macros",
"rt",
]
[dev-dependencies.tokio]
version = "1.0"
features = [
"rt-multi-thread",
"macros",
]