36 lines
991 B
TOML
36 lines
991 B
TOML
[workspace]
|
|
resolver = "3"
|
|
members = [
|
|
"cove-net/common",
|
|
"cove-net/client",
|
|
"cove-net/server",
|
|
"bin-test",
|
|
"cove-db",
|
|
"cove-db/cove-db-macros"]
|
|
|
|
[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"] }
|
|
rand = "0.10.0"
|
|
|
|
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" ]}
|
|
|
|
cove-db-macros = {path = "cove-db/cove-db-macros" }
|
|
syn = {version = "2.0.116", features = ["full"]}
|
|
quote = {version = "1.0.44"}
|
|
proc-macro2 = "1.0.106" |