2026-09-10 01:02:33 -04:00
|
|
|
[package]
|
|
|
|
|
name = "onionwire"
|
2026-09-10 14:50:01 -04:00
|
|
|
version = "0.2.0"
|
2026-09-10 01:02:33 -04:00
|
|
|
edition = "2024"
|
2026-09-10 13:14:55 -04:00
|
|
|
rust-version = "1.91"
|
2026-09-10 01:02:33 -04:00
|
|
|
description = "Lean Tor messenger: Arti in-process, identity=pubkey, onion=locator. No XMPP."
|
|
|
|
|
license = "MIT"
|
|
|
|
|
publish = false
|
2026-09-10 03:04:56 -04:00
|
|
|
repository = "https://github.com/sirius0xdev/onionwire"
|
2026-09-10 01:02:33 -04:00
|
|
|
|
|
|
|
|
[dependencies]
|
2026-09-10 01:18:28 -04:00
|
|
|
arti-client = { version = "0.46", features = ["tokio", "onion-service-client", "onion-service-service"] }
|
|
|
|
|
futures = "0.3"
|
|
|
|
|
safelog = "0.9"
|
2026-09-10 01:43:02 -04:00
|
|
|
ed25519-dalek = { version = "2", features = ["rand_core"] }
|
|
|
|
|
rand = "0.8"
|
|
|
|
|
rusqlite = { version = "0.36", features = ["bundled"] }
|
2026-09-10 14:37:43 -04:00
|
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-util", "time", "net"] }
|
2026-09-10 01:18:28 -04:00
|
|
|
tor-cell = "0.46"
|
|
|
|
|
tor-hsservice = "0.46"
|
|
|
|
|
tor-rtcompat = { version = "0.46", features = ["tokio"] }
|
2026-09-10 01:54:19 -04:00
|
|
|
qrcode = { version = "0.14.1", default-features = false }
|
|
|
|
|
ratatui = { version = "0.30.2", default-features = false, features = ["crossterm"] }
|
2026-09-10 02:07:40 -04:00
|
|
|
x25519-dalek = { version = "2", features = ["static_secrets"] }
|
|
|
|
|
snow = "0.10"
|
2026-09-10 14:37:43 -04:00
|
|
|
serde_json = "1"
|
2026-09-10 14:50:01 -04:00
|
|
|
argon2 = "0.5"
|
|
|
|
|
chacha20poly1305 = "0.10"
|
2026-09-10 01:18:28 -04:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
tempfile = "3"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|