M3: framed Noise_IK_25519_ChaChaPoly_BLAKE2s on the onion pipe, QR-pinned identity proofs, plaintext only in sqlite. Live two_node send of hello wire.
27 lines
983 B
TOML
27 lines
983 B
TOML
[package]
|
|
name = "onionwire"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Lean Tor messenger: Arti in-process, identity=pubkey, onion=locator. No XMPP."
|
|
license = "MIT"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
arti-client = { version = "0.46", features = ["tokio", "onion-service-client", "onion-service-service"] }
|
|
futures = "0.3"
|
|
safelog = "0.9"
|
|
ed25519-dalek = { version = "2", features = ["rand_core"] }
|
|
rand = "0.8"
|
|
rusqlite = { version = "0.36", features = ["bundled"] }
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-util", "time"] }
|
|
tor-cell = "0.46"
|
|
tor-hsservice = "0.46"
|
|
tor-rtcompat = { version = "0.46", features = ["tokio"] }
|
|
qrcode = { version = "0.14.1", default-features = false }
|
|
ratatui = { version = "0.30.2", default-features = false, features = ["crossterm"] }
|
|
x25519-dalek = { version = "2", features = ["static_secrets"] }
|
|
snow = "0.10"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|