[package]
edition = "2024"
name = "communitas-core"
version = "0.1.21"
authors = [
"David Irvine <david.irvine@maidsafe.net>",
"Saorsa Labs",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core business logic for Communitas - PQC collaboration with virtual disks"
homepage = "https://communitas.life"
readme = "README.md"
license = "GPL-3.0"
repository = "https://github.com/saorsalabs/communitas"
resolver = "2"
[lib]
name = "communitas_core"
path = "src/lib.rs"
[[test]]
name = "bootstrap_tests"
path = "tests/bootstrap_tests.rs"
[[test]]
name = "cascade_member_removal_test"
path = "tests/cascade_member_removal_test.rs"
[[test]]
name = "crdt_delta_test"
path = "tests/crdt_delta_test.rs"
[[test]]
name = "crdt_document_lifecycle_test"
path = "tests/crdt_document_lifecycle_test.rs"
[[test]]
name = "crdt_error_handling_test"
path = "tests/crdt_error_handling_test.rs"
[[test]]
name = "crdt_tests"
path = "tests/crdt_tests.rs"
[[test]]
name = "doc_replicator_tests"
path = "tests/doc_replicator_tests.rs"
[[test]]
name = "exponential_backoff_test"
path = "tests/exponential_backoff_test.rs"
[[test]]
name = "foaf_discovery_tests"
path = "tests/foaf_discovery_tests.rs"
[[test]]
name = "member_removal_all_entities_test"
path = "tests/member_removal_all_entities_test.rs"
[[test]]
name = "message_sync_tests"
path = "tests/message_sync_tests.rs"
[[test]]
name = "network_test_utils"
path = "tests/network_test_utils.rs"
[[test]]
name = "peer_sync_integration_tests"
path = "tests/peer_sync_integration_tests.rs"
[[test]]
name = "phase3_integration_tests"
path = "tests/phase3_integration_tests.rs"
[[test]]
name = "presence_integration_tests"
path = "tests/presence_integration_tests.rs"
[[test]]
name = "quic_integration_tests"
path = "tests/quic_integration_tests.rs"
[[test]]
name = "resource_limits_integration_tests"
path = "tests/resource_limits_integration_tests.rs"
[[test]]
name = "resource_limits_test"
path = "tests/resource_limits_test.rs"
[[test]]
name = "retry_integration_tests"
path = "tests/retry_integration_tests.rs"
[[test]]
name = "sites_integration_test"
path = "tests/sites_integration_test.rs"
[[test]]
name = "sites_real_network_test"
path = "tests/sites_real_network_test.rs"
[[test]]
name = "watchdog_integration_tests"
path = "tests/watchdog_integration_tests.rs"
[[test]]
name = "website_storage_test"
path = "tests/website_storage_test.rs"
[dependencies.ammonia]
version = "4.0"
[dependencies.anyhow]
version = "1.0"
[dependencies.argon2]
version = "0.5"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.bincode]
version = "1.3"
[dependencies.blake3]
version = "1.0"
[dependencies.bytes]
version = "1.5"
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ciborium]
version = "0.2"
[dependencies.communitas-kanban]
version = "0.1.21"
[dependencies.dirs]
version = "5.0"
[dependencies.fips204]
version = "0.4"
[dependencies.flate2]
version = "1.0"
[dependencies.four-word-networking]
version = "2.6"
[dependencies.futures]
version = "0.3"
[dependencies.getrandom]
version = "0.2"
[dependencies.hex]
version = "0.4"
[dependencies.keyring]
version = "3.2"
[dependencies.lazy_static]
version = "1.4"
[dependencies.local-ip-address]
version = "0.6"
[dependencies.log]
version = "0.4"
[dependencies.mime_guess]
version = "2.0"
[dependencies.once_cell]
version = "1.19"
[dependencies.openh264-sys2]
version = "0.9.0"
[dependencies.pbkdf2]
version = "0.12"
[dependencies.pulldown-cmark]
version = "0.12"
[dependencies.rand]
version = "0.8"
[dependencies.rand_chacha]
version = "0.3"
[dependencies.regex]
version = "1.10"
[dependencies.saorsa-gossip-coordinator]
version = "0.2.0"
[dependencies.saorsa-gossip-crdt-sync]
version = "0.2.0"
[dependencies.saorsa-gossip-groups]
version = "0.2.0"
[dependencies.saorsa-gossip-identity]
version = "0.2.0"
[dependencies.saorsa-gossip-membership]
version = "0.2.0"
[dependencies.saorsa-gossip-presence]
version = "0.2.0"
[dependencies.saorsa-gossip-pubsub]
version = "0.2.0"
[dependencies.saorsa-gossip-rendezvous]
version = "0.2.0"
[dependencies.saorsa-gossip-transport]
version = "0.2.0"
[dependencies.saorsa-gossip-types]
version = "0.2.0"
[dependencies.saorsa-pqc]
version = "0.3.12"
[dependencies.saorsa-webrtc-codecs]
version = "0.2.1"
[dependencies.saorsa-webrtc-core]
version = "0.2.1"
[dependencies.secrecy]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_bytes]
version = "0.11"
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.39"
features = ["full"]
[dependencies.tokio-retry]
version = "0.3"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
[dependencies.uuid]
version = "1"
features = [
"v4",
"v7",
"serde",
]
[dependencies.validator]
version = "0.20"
features = ["derive"]
[dependencies.yrs]
version = "0.19"
features = ["sync"]
[dependencies.zeroize]
version = "1.7"
[dev-dependencies.libfuzzer-sys]
version = "0.4"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.rustls]
version = "0.23"
features = ["ring"]
[dev-dependencies.tempfile]
version = "3.0"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.59"
features = ["Win32_Security_Credentials"]