dotzuki-runner 0.1.1

Generic runtime that boots a zero-Rust jrpg game project (manifest, DSL, maps)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "dotzuki-runner"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic runtime that boots a zero-Rust jrpg game project (manifest, DSL, maps)"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/liuyanghejerry/dotzuki"

[features]
default = [
    "gpu",
    "watch",
]
gpu = ["dotzuki-renderer/gpu"]
modern-audio = ["dotzuki-audio/modern-audio"]
watch = ["dep:notify"]

[lib]
name = "dotzuki_runner"
path = "src/lib.rs"

[[example]]
name = "battle_accept"
path = "examples/battle_accept.rs"

[[example]]
name = "encounter_accept"
path = "examples/encounter_accept.rs"

[[example]]
name = "levels_accept"
path = "examples/levels_accept.rs"

[[example]]
name = "menu_accept"
path = "examples/menu_accept.rs"

[[test]]
name = "audio"
path = "tests/audio.rs"

[[test]]
name = "battle"
path = "tests/battle.rs"

[[test]]
name = "encounters"
path = "tests/encounters.rs"

[[test]]
name = "fixture"
path = "tests/fixture.rs"

[[test]]
name = "hot_reload"
path = "tests/hot_reload.rs"

[[test]]
name = "menus"
path = "tests/menus.rs"

[[test]]
name = "runner_game"
path = "tests/runner_game.rs"

[[test]]
name = "save"
path = "tests/save.rs"

[dependencies.anyhow]
version = "1"

[dependencies.cpal]
version = "0.15"

[dependencies.dotzuki-audio]
version = "0.1.1"
features = ["serde"]

[dependencies.dotzuki-engine]
version = "0.1.1"

[dependencies.dotzuki-engine-dsl]
version = "0.1.1"

[dependencies.dotzuki-engine-script]
version = "0.1.1"

[dependencies.dotzuki-engine-tiled]
version = "0.1.1"

[dependencies.dotzuki-renderer]
version = "0.1.1"
features = ["image-assets"]
default-features = false

[dependencies.dotzuki-rules]
version = "0.1.1"

[dependencies.dotzuki-ui]
version = "0.1.1"

[dependencies.image]
version = "0.25"
features = ["png"]
default-features = false

[dependencies.log]
version = "0.4"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.dotzuki-app]
version = "0.1.1"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.notify]
version = "6"
optional = true