[package]
edition = "2024"
name = "pasta_lua"
version = "0.1.1"
authors = ["Dot-Station Master <dot.station@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pasta Lua - Lua integration for Pasta DSL"
homepage = "https://github.com/ekicyou/pasta"
documentation = "https://github.com/ekicyou/pasta"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ekicyou/pasta"
resolver = "2"
[lib]
name = "pasta_lua"
path = "src/lib.rs"
[[test]]
name = "actor_word_dictionary_test"
path = "tests/actor_word_dictionary_test.rs"
[[test]]
name = "config_actors_initialization_test"
path = "tests/config_actors_initialization_test.rs"
[[test]]
name = "fallback_search_integration_test"
path = "tests/fallback_search_integration_test.rs"
[[test]]
name = "finalize_scene_test"
path = "tests/finalize_scene_test.rs"
[[test]]
name = "japanese_identifier_test"
path = "tests/japanese_identifier_test.rs"
[[test]]
name = "loader_integration_test"
path = "tests/loader_integration_test.rs"
[[test]]
name = "lua_unittest_runner"
path = "tests/lua_unittest_runner.rs"
[[test]]
name = "pasta_lua_encoding_test"
path = "tests/pasta_lua_encoding_test.rs"
[[test]]
name = "persistence_integration_test"
path = "tests/persistence_integration_test.rs"
[[test]]
name = "runtime_e2e_test"
path = "tests/runtime_e2e_test.rs"
[[test]]
name = "sakura_script_integration_test"
path = "tests/sakura_script_integration_test.rs"
[[test]]
name = "scene_search_test"
path = "tests/scene_search_test.rs"
[[test]]
name = "search_module_test"
path = "tests/search_module_test.rs"
[[test]]
name = "shiori_event_test"
path = "tests/shiori_event_test.rs"
[[test]]
name = "shiori_res_test"
path = "tests/shiori_res_test.rs"
[[test]]
name = "stdlib_modules_test"
path = "tests/stdlib_modules_test.rs"
[[test]]
name = "stdlib_regex_test"
path = "tests/stdlib_regex_test.rs"
[[test]]
name = "transpiler_integration_test"
path = "tests/transpiler_integration_test.rs"
[[test]]
name = "transpiler_snapshot_test"
path = "tests/transpiler_snapshot_test.rs"
[[test]]
name = "ucid_test"
path = "tests/ucid_test.rs"
[[test]]
name = "virtual_event_dispatcher_test"
path = "tests/virtual_event_dispatcher_test.rs"
[dependencies.flate2]
version = "1.1.9"
[dependencies.glob]
version = "0.3"
[dependencies.mlua]
version = "0.11"
features = [
"lua55",
"vendored",
"serialize",
]
[dependencies.mlua-stdlib]
version = "0.1"
features = [
"json",
"regex",
"yaml",
]
[dependencies.pasta_core]
version = "0.1.1"
[dependencies.regex]
version = "1.12.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.9.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.insta]
version = "1.46.3"
features = ["glob"]
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.lua-src]
version = ">= 550.0.0, < 560.0.0"
features = ["ucid"]
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61.2"
features = ["Win32_Globalization"]