visualbasic 0.2.0

Parse and inspect Visual Basic 6 compiled binaries
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"
rust-version = "1.85"
name = "visualbasic"
version = "0.2.0"
authors = ["Johann Kempter <admin@binflip.rs>"]
build = "build.rs"
exclude = [
    "FEATURES.md",
    "TODO.md",
    "MSVBVM60_RUNTIME.md",
    "data/VB6_PCODE_RESEARCH.md",
    "data/vb6_form_format.md",
    ".github/",
    "*.bndb",
    "*.bin.bndb",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parse and inspect Visual Basic 6 compiled binaries"
readme = "README.md"
keywords = [
    "vb6",
    "pcode",
    "parser",
    "reverse-engineering",
    "binary-analysis",
]
categories = ["parser-implementations"]
license = "Apache-2.0"
repository = "https://github.com/BinFlip/visualbasic-rs"

[features]
default = []
tracing = ["dep:tracing"]

[lib]
name = "visualbasic"
path = "src/lib.rs"

[[example]]
name = "dump"
path = "examples/dump.rs"

[dependencies.goblin]
version = "0.10.5"

[dependencies.tracing]
version = "0.1.44"
features = ["std"]
optional = true
default-features = false

[dev-dependencies.proptest]
version = "1.11.0"