23 lines
492 B
TOML
23 lines
492 B
TOML
# file: crates/apps/game-reflex-poc-wasm/Cargo.toml
|
|
# version: 1
|
|
|
|
[package]
|
|
name = "game-reflex-poc-wasm"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
publish.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
engine-v1-common = { path = "../../engines/engine-v1-common" }
|
|
game-reflex-poc = { path = "../../games/game-reflex-poc" }
|
|
wasm-bindgen.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|