Initial Commit
This commit is contained in:
18
Cargo.toml
18
Cargo.toml
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user