vb6interpret 0.1.0

VB6 interpreter for executing VB6 code directly
Documentation
# 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 = "2024"
name = "vb6interpret"
version = "0.1.0"
authors = ["Arthur <scriptandcompile@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "VB6 interpreter for executing VB6 code directly"
readme = "README.md"
keywords = [
    "vb6",
    "visual-basic",
    "interpreter",
    "runtime",
]
categories = [
    "development-tools",
    "compilers",
]
license = "MIT"
repository = "https://github.com/scriptandcompile/vb6"
resolver = "2"

[features]
default = []
repl = [
    "dep:rustyline",
    "dep:colored",
]
trace = [
    "tracing",
    "tracing-subscriber",
]

[lib]
name = "vb6interpret"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "vb6interpret"
path = "src/main.rs"

[[test]]
name = "resources"
path = "tests/resources.rs"

[[test]]
name = "run"
path = "tests/run.rs"

[[test]]
name = "trace"
path = "tests/trace.rs"

[dependencies.anyhow]
version = "1.0.104"

[dependencies.ariadne]
version = "0.6.0"

[dependencies.clap]
version = "4.6.5"
features = [
    "cargo",
    "derive",
]

[dependencies.jiff]
version = "0.2.35"
features = ["js"]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.thiserror]
version = "2.0.20"

[dependencies.tracing]
version = "0.1"
optional = true

[dependencies.tracing-subscriber]
version = "0.3"
optional = true

[dependencies.vb6core]
version = "0.2.0"

[dependencies.vb6parse]
version = "1.2.3"

[dependencies.vb6runtime]
version = "0.2.0"

[dependencies.vb6semantic]
version = "0.1.0"

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.tempfile]
version = "3.8"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.colored]
version = "3.1.1"
optional = true

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rustyline]
version = "18.0.1"
optional = true

[target.'cfg(target_arch = "wasm32")'.dependencies.base64]
version = "0.23.1"

[target.'cfg(target_arch = "wasm32")'.dependencies.console_error_panic_hook]
version = "0.1.7"

[target.'cfg(target_arch = "wasm32")'.dependencies.serde-wasm-bindgen]
version = "0.6.5"

[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2.127"

[lints.cargo]
unused_dependencies = "allow"