# file: crates/apps/game-reflex-poc-tauri/Cargo.toml # version: 1 [package] name = "game-reflex-poc-tauri" version.workspace = true edition.workspace = true license.workspace = true repository.workspace = true authors.workspace = true publish.workspace = true build = "build.rs" [lib] crate-type = ["cdylib", "rlib"] [dependencies] engine-v1-common = { path = "../../engines/engine-v1-common" } engine-v1-platform-api = { path = "../../engines/engine-v1-platform-api" } game-reflex-poc = { path = "../../games/game-reflex-poc" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] tauri.workspace = true [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen.workspace = true [build-dependencies] tauri-build.workspace = true [lints] workspace = true