ItsGoin v0.3.2 — Decentralized social media network
No central server, user-owned data, reverse-chronological feed. Rust core + Tauri desktop + Android app + plain HTML/CSS/JS frontend. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
commit
800388cda4
146 changed files with 53227 additions and 0 deletions
24
crates/core/Cargo.toml
Normal file
24
crates/core/Cargo.toml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
[package]
|
||||
name = "itsgoin-core"
|
||||
version = "0.3.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"
|
||||
igd-next = { version = "0.16", features = ["tokio"] }
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = "3"
|
||||
Loading…
Add table
Add a link
Reference in a new issue