26 lines
598 B
TOML
26 lines
598 B
TOML
[package]
|
|
name = "lattice-cli"
|
|
description = "Interactive CLI for Lattice"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "lattice"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
lattice-core = { workspace = true }
|
|
lattice-net = { workspace = true }
|
|
rustyline = { workspace = true }
|
|
hex = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
shlex = "1"
|
|
serde_json = "1"
|
|
iroh = { workspace = true }
|
|
prost = { workspace = true }
|
|
chrono = { workspace = true }
|
|
tokio-util = { version = "0.7", features = ["codec"] }
|
|
futures-util = "0.3"
|