17 lines
453 B
TOML
17 lines
453 B
TOML
[package]
|
|
name = "artist-dht-cli"
|
|
version = "0.1.0"
|
|
description = "Interactive CLI for the artist-dht PoC"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
artist-dht = { path = "../../crates/artist-dht" }
|
|
federation-net = { workspace = true }
|
|
tokio = { workspace = true }
|
|
clap = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
rustyline = { workspace = true }
|