Initial Commit

This commit is contained in:
AviiNL
2023-12-22 04:50:17 +01:00
parent 15f764aae8
commit f79b6b5dfb
41 changed files with 4379 additions and 270 deletions

View File

@@ -14,6 +14,12 @@ edition.workspace = true
repository.workspace = true
license.workspace = true
[workspace.lints.clippy]
type_complexity = "allow"
[lints]
workspace = true
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
@@ -28,10 +34,18 @@ bevy = { version = "0.12", features = [
"multi-threaded",
"trace",
] }
tokio = { version = "1.34", features = ["macros", "rt-multi-thread", "signal"] }
dcs-grpc = { path = "./crates/dcs-grpc" }
guardian_commands = { path = "./crates/guardian_commands" }
guardian_core = { path = "./crates/guardian_core" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.34", features = ["macros", "rt-multi-thread", "signal"] }
clap = { version = "4.4", features = ["derive"] }
shlex = "1.2"
[dependencies]
guardian_core = { path = "./crates/guardian_core" }
bevy.workspace = true
clap.workspace = true
tokio.workspace = true
guardian_commands.workspace = true
guardian_core.workspace = true