24 lines
501 B
TOML
24 lines
501 B
TOML
[package]
|
|
name = "server"
|
|
license.workspace = true
|
|
license-file.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
bevy_ecs = "0.19"
|
|
crossbeam-channel = "0.5.16"
|
|
glam = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
shared = { version = "0.1.0", path = "../shared" }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.27.0"
|