[package]
edition = "2021"
name = "tishlang_bytecode"
version = "1.4.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bytecode compiler for Tish (AST → bytecode)"
readme = false
license-file = "LICENSE"
repository = "https://github.com/tishlang/tish"
[lib]
name = "tishlang_bytecode"
path = "src/lib.rs"
[[test]]
name = "constant_folding"
path = "tests/constant_folding.rs"
[[test]]
name = "sort_optimization"
path = "tests/sort_optimization.rs"
[dependencies.tishlang_ast]
version = ">=0.1"
[dependencies.tishlang_core]
version = ">=0.1"
[dev-dependencies.tishlang_compile]
version = ">=0.1"
[dev-dependencies.tishlang_opt]
version = ">=0.1"
[dev-dependencies.tishlang_parser]
version = ">=0.1"