Version bumped in all five places (core/cli/tauri-app Cargo.toml, tauri.conf.json, Android versionName + versionCode 8000). download.html carries the v0.8.0-alpha release block: registry + greeting comments as the headline, the manifest privacy fix and persona-split bug family, comment ingest verification, and the protocol slimming. States plainly that v0.8 cannot talk to v0.7.x and the anchor moves with it. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LGiPD2cF75mnvneSCjdDC5
29 lines
812 B
TOML
29 lines
812 B
TOML
[package]
|
|
name = "itsgoin-core"
|
|
version = "0.8.0-alpha"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
iroh = { version = "0.96", features = ["address-lookup-mdns"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
blake3 = "1"
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
hex = "0.4"
|
|
rand = "0.9"
|
|
curve25519-dalek = { version = "=5.0.0-pre.1", features = ["rand_core", "zeroize"] }
|
|
ed25519-dalek = { version = "=3.0.0-pre.1", features = ["rand_core", "zeroize"] }
|
|
chacha20poly1305 = "0.10"
|
|
base64 = "0.22"
|
|
zip = { version = "2", default-features = false, features = ["deflate"] }
|
|
portmapper = "0.14"
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
jni = "0.21"
|
|
ndk-context = "0.1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|