[package]
edition = "2021"
name = "tishlang_vm"
version = "1.0.21"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bytecode VM for Tish"
readme = false
license-file = "LICENSE"
repository = "https://github.com/tishlang/tish"
[features]
default = []
fs = ["tishlang_runtime/fs"]
http = ["tishlang_runtime/http"]
process = ["tishlang_runtime/process"]
regex = ["tishlang_core/regex"]
wasm = ["dep:wasm-bindgen"]
ws = ["tishlang_runtime/ws"]
[lib]
name = "tishlang_vm"
path = "src/lib.rs"
[dependencies.rand]
version = "0.10"
[dependencies.tishlang_ast]
version = ">=0.1"
[dependencies.tishlang_builtins]
version = ">=0.1"
[dependencies.tishlang_bytecode]
version = ">=0.1"
[dependencies.tishlang_core]
version = ">=0.1"
[dependencies.tishlang_runtime]
version = ">=0.1"
optional = true
[dependencies.wasm-bindgen]
version = "0.2"
optional = true
[dev-dependencies.tishlang_parser]
version = ">=0.1"
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.4"
features = ["wasm_js"]