19 lines
461 B
TOML
19 lines
461 B
TOML
# file: crates/apps/game-snake-poc-desktop/Cargo.toml
|
|
# version: 2
|
|
|
|
[package]
|
|
name = "game-snake-poc-desktop"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
engine-v1-sdl = { path = "../../engines/engine-v1-sdl" }
|
|
game-logging-lib = { path = "../../common/game-logging-lib" }
|
|
game-snake-poc = { path = "../../games/game-snake-poc" }
|
|
tracing.workspace = true
|
|
|
|
[lints.rust]
|
|
missing_docs = "warn"
|
|
unsafe_code = "forbid"
|