2429e695ce
All features and APIs verified present in 0.41: - tokio, rustls, compression, onion-service-client, static-sqlite - TorClient::create_bootstrapped, from_directories, connect() https://claude.ai/code/session_01BApgDd5udqBzMqysSRMpZu
30 lines
606 B
TOML
30 lines
606 B
TOML
[package]
|
|
name = "arti-android"
|
|
version = "2.2.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[workspace]
|
|
|
|
[dependencies]
|
|
arti-client = { version = "0.41", default-features = false, features = [
|
|
"tokio",
|
|
"rustls",
|
|
"compression",
|
|
"onion-service-client",
|
|
"static-sqlite",
|
|
] }
|
|
tor-rtcompat = { version = "0.41", default-features = false, features = ["tokio", "rustls"] }
|
|
jni = "0.21"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "net", "io-util", "time", "macros"] }
|
|
anyhow = "1"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|
|
panic = "abort"
|