[package]
name = "pixelscript"
version = "0.4.3"
edition = "2024"
license = "Apache-2.0"
authors = ["Jordan Castro jordan@grupojvm.com"]
description = "Multi language scripting runtime"
repository = "https://github.com/jordan-castro/pixelscript"
[lib]
crate-type = ["staticlib", "rlib"]
[dependencies]
mlua = { version = "0.11", features = ["lua54", "vendored", "send"], optional = true }
anyhow = "1.0.100"
parking_lot = "0.12.5"
thread_local = "1.1.9"
[build-dependencies]
cbindgen = "0.29.2"
cc = "1.2.52"
bindgen = "0.72.1"
[features]
default = ["lua", "python", "php"]
lua = ["dep:mlua"]
python = []
php = []
include-core = []
pxs-debug = []
[profile.release]
opt-level = "z"
strip = true
lto = true
codegen-units = 1
panic = "abort"