[package]
edition = "2024"
name = "pasta_lua"
version = "0.2.1"
authors = ["Dot-Station Master <dot.station@gmail.com>"]
build = "build.rs"
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 = "build_determinism_test"
path = "tests/build_determinism_test.rs"
[[test]]
name = "chunk_name_validation_test"
path = "tests/chunk_name_validation_test.rs"
[[test]]
name = "japanese_identifier_test"
path = "tests/japanese_identifier_test.rs"
[[test]]
name = "loader"
path = "tests/loader/main.rs"
[[test]]
name = "loader_source_map_build_test"
path = "tests/loader_source_map_build_test.rs"
[[test]]
name = "log"
path = "tests/log/main.rs"
[[test]]
name = "lua_unittest_runner"
path = "tests/lua_unittest_runner.rs"
[[test]]
name = "property_scope_codegen_test"
path = "tests/property_scope_codegen_test.rs"
[[test]]
name = "property_token_preservation_test"
path = "tests/property_token_preservation_test.rs"
[[test]]
name = "runtime"
path = "tests/runtime/main.rs"
[[test]]
name = "sakura_script"
path = "tests/sakura_script/main.rs"
[[test]]
name = "search"
path = "tests/search/main.rs"
[[test]]
name = "shiori"
path = "tests/shiori/main.rs"
[[test]]
name = "string_buffer_availability_test"
path = "tests/string_buffer_availability_test.rs"
[[test]]
name = "transpiler"
path = "tests/transpiler/main.rs"
[[test]]
name = "ucid_test"
path = "tests/ucid_test.rs"
[dependencies.budoux]
version = "0.1.1"
[dependencies.flate2]
version = "1.1.9"
[dependencies.glob]
version = "0.3"
[dependencies.mlua]
version = "0.11"
features = [
"luajit52",
"vendored",
"serialize",
]
[dependencies.mlua-stdlib]
version = "0.1"
features = [
"json",
"regex",
"yaml",
]
[dependencies.pasta_core]
version = "0.2.1"
[dependencies.pasta_dsl]
version = "0.2.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 = "1.1.2"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.unicode-width]
version = "0.2.2"
[dependencies.zip]
version = "8.6"
features = ["deflate"]
default-features = false
[dev-dependencies.insta]
version = "1.47.2"
features = ["glob"]
[dev-dependencies.md5]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tracing-test]
version = "0.2"
features = ["no-env-filter"]
[build-dependencies.md5]
version = "0.8"
[build-dependencies.zip]
version = "8.6"
features = ["deflate"]
default-features = false
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_System_Memory",
"Win32_Globalization",
]