27 lines
899 B
TOML
27 lines
899 B
TOML
[package]
|
|
name = "cll2v0"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
# license = "MIT" -- set to apache
|
|
|
|
[package.metadata.release]
|
|
release = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.95"
|
|
clap = { version = "4.5.18", features = ["derive"] }
|
|
ed25519-dalek = "2.1.1"
|
|
futures = "0.3.30"
|
|
hex = "0.4.3"
|
|
libp2p = { version = "0.54.1", features = ["tokio", "gossipsub", "mdns", "noise", "macros", "tcp", "yamux", "quic", "identify", "ping", "relay", "dcutr", "rendezvous", "kad"] }
|
|
libp2p-identity = { version = "0.2.9", features = ["ed25519", "peerid"] }
|
|
owo-colors = "4.1.0"
|
|
quick-protobuf = "0.8.1"
|
|
rand = "0.8.5"
|
|
serde = { version = "1.0.213", features = ["derive"] }
|
|
sqlx = { version = "0.8.2", features = ["sqlite", "macros", "runtime-tokio"] }
|
|
tokio = { version = "1.40.0", features = ["full", "tracing"] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|