[package]
name = "vb6interpret"
version = "0.1.0"
edition = "2024"
authors = ["Arthur <scriptandcompile@gmail.com>"]
license = "MIT"
description = "VB6 interpreter for executing VB6 code directly"
repository = "https://github.com/scriptandcompile/vb6"
keywords = ["vb6", "visual-basic", "interpreter", "runtime"]
categories = ["development-tools", "compilers"]
[lib]
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "vb6interpret"
path = "src/main.rs"
[dependencies]
vb6parse.workspace = true
vb6semantic.workspace = true
vb6runtime.workspace = true
vb6core.workspace = true
jiff.workspace = true
ariadne.workspace = true
thiserror.workspace = true
anyhow.workspace = true
clap.workspace = true
serde.workspace = true
tracing = { workspace = true, optional = true }
tracing-subscriber = { workspace = true, optional = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rustyline = { workspace = true, optional = true }
colored = { workspace = true, optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen.workspace = true
serde-wasm-bindgen.workspace = true
console_error_panic_hook.workspace = true
base64.workspace = true
[dev-dependencies]
criterion.workspace = true
tempfile.workspace = true
[features]
default = []
repl = ["dep:rustyline", "dep:colored"]
trace = ["tracing", "tracing-subscriber"]
[lints]
workspace = true