28 lines
770 B
TOML
28 lines
770 B
TOML
[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 }
|