visualbasic 0.2.1

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.88"
name = "visualbasic"
version = "0.2.1"
authors = ["Johann Kempter <admin@binflip.rs>"]
build = "build.rs"
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"

[lints.clippy]
arithmetic_side_effects = "deny"
expect_used = "deny"
indexing_slicing = "deny"
panic = "deny"
unwrap_used = "deny"

[lints.rust]
missing_docs = "deny"
unsafe_code = "deny"