[package]
edition = "2024"
name = "pasta_lua"
version = "0.1.11"
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 = "japanese_identifier_test"
path = "tests/japanese_identifier_test.rs"
[[test]]
name = "loader"
path = "tests/loader/main.rs"
[[test]]
name = "log"
path = "tests/log/main.rs"
[[test]]
name = "lua_unittest_runner"
path = "tests/lua_unittest_runner.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 = "transpiler"
path = "tests/transpiler/main.rs"
[[test]]
name = "ucid_test"
path = "tests/ucid_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.11"
[dependencies.pasta_dsl]
version = "0.1.11"
[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"
[dev-dependencies.tracing-test]
version = "0.2"
features = ["no-env-filter"]
[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"]