mirror of
https://github.com/permissionlesstech/bitchat-android.git
synced 2026-08-29 07:16:08 +00:00
26 lines
798 B
TOML
26 lines
798 B
TOML
[package]
|
|
name = "arti-android-wrapper"
|
|
version = "1.9.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
# Empty workspace table to exclude from parent workspace
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
name = "arti_android"
|
|
|
|
[dependencies]
|
|
arti-client = { path = "../crates/arti-client", default-features = false, features = ["tokio", "rustls", "compression", "bridge-client", "onion-service-client", "static", "static-sqlite"] }
|
|
tor-rtcompat = { path = "../crates/tor-rtcompat", features = ["tokio", "rustls", "static"] }
|
|
jni = "0.21"
|
|
tokio = { version = "1", features = ["full"] }
|
|
anyhow = "1.0"
|
|
|
|
[profile.release]
|
|
opt-level = "z" # Optimize for size
|
|
lto = true # Link-time optimization
|
|
codegen-units = 1 # Better optimization
|
|
strip = true # Strip symbols
|
|
panic = "abort" # Smaller panic handler
|