[package] name = "cll2v0" version = "0.0.0" edition = "2021" publish = false # license = "MIT" -- set to apache [package.metadata.release] release = false [[bin]] # Bin to run the server name = "cli" path = "app/cli.rs" # # [[bin]] # Bin to run the client # name = "client" # path = "app/client.rs" [dependencies] anyhow = "1.0.95" clap = { version = "4.5.18", features = ["derive"] } cryptoxide = "0.4.4" ed25519-dalek = { version = "2.1.1", features = ["digest"] } 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", "request-response"] } 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"] }