All checks were successful
ci / test (pull_request) Successful in 3m16s
Reject prefix+length junk so /pay, /tip, and profile save cannot sign or store garbage xmr_addr. Empty profile address stays allowed.
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "onionwire"
|
|
version = "0.2.0"
|
|
edition = "2024"
|
|
rust-version = "1.91"
|
|
description = "Lean Tor messenger: Arti in-process, identity=pubkey, onion=locator. No XMPP."
|
|
license = "MIT"
|
|
publish = false
|
|
repository = "https://github.com/sirius0xdev/onionwire"
|
|
|
|
[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", "net"] }
|
|
tor-cell = "0.46"
|
|
tor-hsservice = "0.46"
|
|
tor-rtcompat = { version = "0.46", features = ["tokio"] }
|
|
ratatui = { version = "0.30.2", default-features = false, features = ["crossterm"] }
|
|
x25519-dalek = { version = "2", features = ["static_secrets"] }
|
|
snow = "0.10"
|
|
serde_json = "1"
|
|
argon2 = "0.5"
|
|
chacha20poly1305 = "0.10"
|
|
sha3 = "0.10"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|