cove-chat/Cargo.toml
CanadianBaconBoi e27a0d33d7 Initial Commit
2026-02-17 18:22:49 +01:00

28 lines
783 B
TOML

[workspace]
resolver = "3"
members = [
"cove-net/common",
"cove-net/client",
"cove-net/server"
, "bin-test", "cove-db"]
[workspace.dependencies]
scc = "3.5.6"
async-trait = "0.1.89"
anyhow = "1.0.101"
hyper = { version = "1", features = ["full"] }
http-body-util = { version = "0.1.3", features = ["full"] }
cove-net-common = {path = "cove-net/common"}
serde_json = "1.0.149"
serde_with = "3.16.1"
serde = { version = "1.0.228", features = ["derive"] }
hex = "0.4.3"
cove-net-server = {path = "cove-net/server"}
tokio = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
cove-db = {path = "cove-db"}
sqlx = { version = "0.8.6", features = [ "runtime-tokio", "tls-rustls-ring", "postgres", "time", "uuid", "json", "derive" ]}