42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "cll2v0"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
# license = "MIT" -- set to apache
|
|
|
|
[package.metadata.release]
|
|
release = false
|
|
|
|
[[bin]] # Admin
|
|
name = "admin"
|
|
path = "app/admin.rs"
|
|
|
|
[[bin]] # Server
|
|
name = "server"
|
|
path = "app/server.rs"
|
|
|
|
[[bin]] # 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", "cbor"] }
|
|
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"] }
|
|
serde_arrays = "0.1.0"
|
|
sqlx = { version = "0.8.2", features = ["sqlite", "macros", "runtime-tokio"] }
|
|
tokio = { version = "1.40.0", features = ["full", "tracing"] }
|
|
toml = "0.8.20"
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|