Files
lua_typed/Cargo.toml
Dreaded_X 619d1d7ec7 feat: Initial limited implementation
This initial implementation only supports structs with named field and
basic enum. It also does not support all the available primitives,
although when needed these are very easy to implement.
2025-09-14 04:49:43 +02:00

21 lines
354 B
TOML

[package]
name = "lua_typed"
version = "0.1.0"
edition = "2024"
[workspace]
members = ["lua_typed_macro"]
[dependencies]
lua_typed_macro = { path = "./lua_typed_macro/" }
[dev-dependencies]
insta = "1.43.2"
trybuild = { version = "1.0.111", features = ["diff"] }
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3