Files
quic_ecs_dt/simulator/Cargo.toml
2026-05-12 11:21:40 -04:00

24 lines
624 B
TOML

[package]
name = "simulator"
version = "0.1.0"
edition = "2024"
[dependencies]
thiserror = "2"
anyhow = "1"
bevy = "0.18"
game_sockets = { git = "https://github.com/VALERE91/game_sockets.git"}
substrate = { path = "../substrate" }
quinn = "0.11"
rustls = "0.23"
rustls-pemfile = "2"
rustls-pki-types = "1"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.23", features = ["v4"] }
bytes = "1"
clap = { version = "4", features = ["derive"] }
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }