added example

This commit is contained in:
Ultradesu
2026-07-10 15:10:03 +03:00
parent 057436adb6
commit a97f0a04b3
21 changed files with 4456 additions and 4 deletions
+27
View File
@@ -0,0 +1,27 @@
[package]
name = "artist-dht"
version = "0.1.0"
description = "Distributed artist search PoC: a Kademlia-style DHT on top of federation-net"
edition.workspace = true
license.workspace = true
rust-version.workspace = true
[dependencies]
federation-net = { workspace = true }
tokio = { workspace = true }
serde = { workspace = true }
postcard = { workspace = true }
blake3 = { workspace = true }
futures = { workspace = true }
uuid = { workspace = true }
unicode-normalization = { workspace = true }
rusqlite = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
rand = { workspace = true }
data-encoding = { workspace = true }
[dev-dependencies]
anyhow = { workspace = true }
tempfile = { workspace = true }
iroh = { workspace = true }