Phases 1-5 of the Identity Architecture rollout are on master; Phase 6 (rotating DM IDs) is deferred. This bumps the protocol-breaking release: v0.5 and v0.6 cannot interoperate. Packaging: - Cargo + tauri.conf: 0.5.3 -> 0.6.0 - deploy.sh: drop -beta filename suffix - download.html: single v0.6.0 section with fork notice at the top; changelog entry summarising the five phases and the schema migration; Phase 6's rotating-DM-ID status noted as deferred Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
25 lines
755 B
TOML
25 lines
755 B
TOML
[package]
|
|
name = "itsgoin-core"
|
|
version = "0.6.0"
|
|
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"] }
|
|
igd-next = { version = "0.16", features = ["tokio"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|