# 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 = "2021" name = "silt-lua" version = "0.1.1" authors = ["MakeAvoy "] exclude = [ "./build-wasm.sh", "./.vscode/launch.json", "./wasm-tester/index.html", ] description = "A pure rust Lua interpreter and virtual machine" readme = "README.md" keywords = [ "lua", "interpreter", "language", "vm", "script", ] categories = [ "compilers", "config", ] license = "MIT" repository = "https://github.com/auxnon/silt-lua" [profile.release] opt-level = "z" lto = true panic = "abort" strip = true [profile.wasm] inherits = "release" [lib] name = "silt_lua" crate-type = [ "cdylib", "lib", ] path = "src/lib.rs" [[bin]] name = "silt_lua_cli" path = "src/main.rs" [dependencies.hashbrown] version = "0.14" [dependencies.wasm-bindgen] version = "0.2.87" [features] bang = [] default = [] dev-out = [] global = [] implicit-return = [] short-declare = [] silt = [ "bang", "under-number", "global", "implicit-return", "short-declare", ] under-number = []