24 lines
505 B
TOML
24 lines
505 B
TOML
[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 = []
|