dotzuki-engine-script 0.1.0

Boa-based async JavaScript scripting runtime for the dotzuki JRPG engine
Documentation
[package]
name = "dotzuki-engine-script"
version.workspace = true
edition.workspace = true
description = "Boa-based async JavaScript scripting runtime for the dotzuki JRPG engine"
license.workspace = true
repository.workspace = true

[features]
## Embed JS/JSON scripts into the binary via `include_str!`.
## When disabled, scripts MUST be loaded from disk at runtime.
embedded-scripts = []

[dependencies]
boa_engine = { version = "0.20", default-features = false }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
log = "0.4"

[dev-dependencies]