[package]
edition = "2024"
name = "luxc"
version = "0.8.2"
authors = ["David M. Anderson"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small teaching language that runs anywhere and transpiles to Rust, Swift, and Go"
readme = "README.md"
keywords = [
"teaching",
"language",
"interpreter",
"transpiler",
"education",
]
categories = [
"command-line-utilities",
"compilers",
]
license = "MIT"
repository = "https://github.com/anderix/lux"
[lib]
name = "lux"
path = "src/lib.rs"
[[bin]]
name = "lux"
path = "src/main.rs"
[[test]]
name = "learn"
path = "tests/learn.rs"
[[test]]
name = "magic"
path = "tests/magic.rs"
[[test]]
name = "transpile"
path = "tests/transpile.rs"
[dependencies]
[profile.dist]
lto = "thin"
inherits = "release"