[package]
edition = "2021"
rust-version = "1.75.0"
name = "x0x"
version = "0.11.2"
authors = ["David Irvine <david@saorsalabs.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-to-agent gossip network for AI systems — no winners, no losers, just cooperation"
homepage = "https://saorsalabs.com"
documentation = "https://docs.rs/x0x"
readme = "README.md"
keywords = [
"gossip",
"ai-agents",
"p2p",
"decentralised",
"post-quantum",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/saorsa-labs/x0x"
[lib]
name = "x0x"
path = "src/lib.rs"
[[bin]]
name = "x0x"
path = "src/bin/x0x.rs"
[[bin]]
name = "x0x-keygen"
path = "src/bin/x0x-keygen.rs"
[[bin]]
name = "x0xd"
path = "src/bin/x0xd.rs"
[[test]]
name = "announcement_test"
path = "tests/announcement_test.rs"
[[test]]
name = "bootstrap_cache_integration"
path = "tests/bootstrap_cache_integration.rs"
[[test]]
name = "comprehensive_integration"
path = "tests/comprehensive_integration.rs"
[[test]]
name = "connectivity_test"
path = "tests/connectivity_test.rs"
[[test]]
name = "crdt_convergence_concurrent"
path = "tests/crdt_convergence_concurrent.rs"
[[test]]
name = "crdt_integration"
path = "tests/crdt_integration.rs"
[[test]]
name = "crdt_partition_tolerance"
path = "tests/crdt_partition_tolerance.rs"
[[test]]
name = "daemon_api_integration"
path = "tests/daemon_api_integration.rs"
[[test]]
name = "direct_messaging_integration"
path = "tests/direct_messaging_integration.rs"
[[test]]
name = "file_transfer_integration"
path = "tests/file_transfer_integration.rs"
[[test]]
name = "identity_announcement_integration"
path = "tests/identity_announcement_integration.rs"
[[test]]
name = "identity_integration"
path = "tests/identity_integration.rs"
[[test]]
name = "identity_unification_test"
path = "tests/identity_unification_test.rs"
[[test]]
name = "mls_integration"
path = "tests/mls_integration.rs"
[[test]]
name = "nat_traversal_integration"
path = "tests/nat_traversal_integration.rs"
[[test]]
name = "network_integration"
path = "tests/network_integration.rs"
[[test]]
name = "network_timeout"
path = "tests/network_timeout.rs"
[[test]]
name = "presence_foaf_integration"
path = "tests/presence_foaf_integration.rs"
[[test]]
name = "rendezvous_integration"
path = "tests/rendezvous_integration.rs"
[[test]]
name = "scale_testing"
path = "tests/scale_testing.rs"
[[test]]
name = "trust_evaluation_test"
path = "tests/trust_evaluation_test.rs"
[[test]]
name = "upgrade_integration"
path = "tests/upgrade_integration.rs"
[[test]]
name = "vps_e2e_integration"
path = "tests/vps_e2e_integration.rs"
[dependencies.ant-quic]
version = "0.24.3"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-stream]
version = "0.3.6"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.7"
features = ["ws"]
[dependencies.axum-extra]
version = "0.9"
features = ["typed-header"]
[dependencies.base64]
version = "0.22"
[dependencies.bincode]
version = "1.3"
[dependencies.blake3]
version = "1.5"
[dependencies.bytes]
version = "1.11"
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dirs]
version = "5.0"
[dependencies.flate2]
version = "1.0"
[dependencies.futures]
version = "0.3"
features = ["alloc"]
[dependencies.hex]
version = "0.4"
[dependencies.hyper]
version = "0.14"
features = [
"server",
"http1",
"tcp",
]
[dependencies.rand]
version = "0.8"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
"rustls-tls",
]
default-features = false
[dependencies.saorsa-gossip-coordinator]
version = "0.5.9"
[dependencies.saorsa-gossip-crdt-sync]
version = "0.5.9"
[dependencies.saorsa-gossip-groups]
version = "0.5.9"
[dependencies.saorsa-gossip-identity]
version = "0.5.9"
[dependencies.saorsa-gossip-membership]
version = "0.5.9"
[dependencies.saorsa-gossip-presence]
version = "0.5.9"
[dependencies.saorsa-gossip-pubsub]
version = "0.5.9"
[dependencies.saorsa-gossip-rendezvous]
version = "0.5.9"
[dependencies.saorsa-gossip-runtime]
version = "0.5.9"
[dependencies.saorsa-gossip-transport]
version = "0.5.9"
[dependencies.saorsa-gossip-types]
version = "0.5.9"
[dependencies.saorsa-mls]
version = "0.3.5"
[dependencies.saorsa-pqc]
version = "0.4"
[dependencies.semver]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.tar]
version = "0.4"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dependencies.toml]
version = "0.8"
[dependencies.tower-http]
version = "0.6"
features = [
"cors",
"trace",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"json",
"env-filter",
]
[dependencies.uuid]
version = "1.20.0"
features = ["v4"]
[dependencies.which]
version = "7"
[dependencies.zeroize]
version = "1.8.2"
[dependencies.zip]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.futures]
version = "0.3"
features = ["alloc"]
[dev-dependencies.futures-util]
version = "0.3"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.14"
[dev-dependencies.tokio-tungstenite]
version = "0.24"