mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-24 22:45:19 +00:00
Vendored arti.xcframework rebuilt from source (Rust 1.96.0, normalized archive metadata for reproducible hashes). New ARTI-BINARY-PROVENANCE.md records toolchain, rebuild steps, and a SHA256 manifest for every file in the xcframework. A new CI workflow turns that policy into a gate: PRs must keep the binary matching the manifest, and binary changes must ship with source/lockfile/build-script evidence. Also raises TorManager.awaitReady's default timeout from 25s to 75s to match the bootstrap monitor deadline - a shorter wait reported "not ready" while Arti was still legitimately bootstrapping, silently stranding queued relay work. Privacy policy, Tor integration doc, and privacy assessment updated to match the current implementation. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
39 lines
767 B
TOML
39 lines
767 B
TOML
[package]
|
|
name = "arti-bitchat"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.90"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib"]
|
|
|
|
[dependencies]
|
|
# Arti core - minimal features for client-only SOCKS proxy
|
|
arti-client = { version = "0.38", default-features = false, features = [
|
|
"tokio",
|
|
"rustls",
|
|
] }
|
|
|
|
# Async runtime
|
|
tokio = { version = "1", default-features = false, features = [
|
|
"rt-multi-thread",
|
|
"net",
|
|
"sync",
|
|
"time",
|
|
"macros",
|
|
] }
|
|
|
|
# Tor runtime compatibility
|
|
tor-rtcompat = { version = "0.38", default-features = false, features = ["tokio"] }
|
|
|
|
# FFI utilities
|
|
libc = "0.2"
|
|
once_cell = "1"
|
|
|
|
# Logging (minimal)
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt"] }
|
|
|
|
[features]
|
|
default = []
|