- Add split licensing: AGPL-3.0 for server, Apache-2.0/MIT for all other crates and SDKs (Signal-style) - Add SECURITY.md with vulnerability disclosure policy - Add CONTRIBUTING.md with build, test, and code standards - Add "not audited" security disclaimer to README - Add workspace package metadata (license, repository, keywords) - Move internal planning docs to docs/internal/ (gitignored)
35 lines
932 B
TOML
35 lines
932 B
TOML
[package]
|
|
name = "quicproquo-p2p"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
description = "P2P transport layer for quicproquo using iroh."
|
|
license = "Apache-2.0 OR MIT"
|
|
repository.workspace = true
|
|
|
|
[features]
|
|
traffic-resistance = []
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
iroh = "0.96"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time", "sync"] }
|
|
tracing = "0.1"
|
|
anyhow = "1"
|
|
|
|
# Mesh identity & store-and-forward
|
|
quicproquo-core = { path = "../quicproquo-core", default-features = false }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
hex = { workspace = true }
|
|
|
|
# Broadcast channels (ChaCha20-Poly1305 symmetric encryption)
|
|
chacha20poly1305 = { workspace = true }
|
|
rand = { workspace = true }
|
|
zeroize = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|