22 lines
588 B
TOML
22 lines
588 B
TOML
[package]
|
|
name = "lattice-proto"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
blake3 = "1.5"
|
|
bytes = "1.5"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
ed25519-dalek = { version = "2.1", features = ["rand_core"] }
|
|
futures = "0.3"
|
|
hex = "0.4"
|
|
iroh = { version = "0.95.1", features = ["discovery-local-network"] }
|
|
iroh-gossip = "0.95.0"
|
|
iroh-tickets = "0.2.0"
|
|
rand = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.36", features = ["full"] }
|
|
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
|