pixelscript 0.3.3

Multi language scripting runtime
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "pixelscript"
version = "0.3.3"
authors = ["Jordan Castro jordan@grupojvm.com"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi language scripting runtime"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/jordan-castro/pixelscript"

[features]
default = [
    "lua",
    "python",
    "php",
]
include-core = []
lua = ["dep:mlua"]
php = []
pxs-debug = []
python = []

[lib]
name = "pixelscript"
crate-type = [
    "staticlib",
    "rlib",
]
path = "src/lib.rs"

[[test]]
name = "test_lua"
path = "tests/test_lua.rs"

[[test]]
name = "test_python"
path = "tests/test_python.rs"

[[test]]
name = "test_repl"
path = "tests/test_repl.rs"

[dependencies.anyhow]
version = "1.0.100"

[dependencies.mlua]
version = "0.11"
features = [
    "lua54",
    "vendored",
    "send",
]
optional = true

[dependencies.parking_lot]
version = "0.12.5"

[dependencies.thread_local]
version = "1.1.9"

[build-dependencies.bindgen]
version = "0.72.1"

[build-dependencies.cbindgen]
version = "0.29.2"

[build-dependencies.cc]
version = "1.2.52"

[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true