This commit is contained in:
Sivert V. Sæther
2025-09-24 16:24:18 +02:00
commit a4645e239b
7 changed files with 5755 additions and 0 deletions

23
Cargo.toml Normal file
View File

@@ -0,0 +1,23 @@
[package]
name = "revsh"
version = "0.1.0"
edition = "2024"
[dependencies]
arti-client = { version = "0.34.0", features = ["onion-service-client"] }
openssl = { version = "0.10.73", features = ["vendored"] }
clap = { version = "4.5.48", features = ["derive"] }
tokio = { version = "1.47.1", features = ["full"] }
pretty_env_logger = "0.5.0"
daemonize = "0.5.0"
log = "0.4.28"
[profile.release]
opt-level = "s"
panic = "abort"
strip = true
lto = true
[features]
static = ["arti-client/static"]
tor = []