[package]
edition = "2021"
name = "vb6parse"
version = "1.0.0"
authors = ["ScriptAndCompile"]
build = false
exclude = [
"tests/data/ADM-TSC-Tools-ALM-QC/*",
"tests/data/audiostation/*",
"tests/data/Binary-metamorphosis/*",
"tests/data/Bitrate-calculator/*",
"tests/data/CdiuBeatUpEditor/*",
"tests/data/ChessBrainVB/*",
"tests/data/CoolWind2D-GameEngine-CHS/*",
"tests/data/DevOps/*",
"tests/data/Discrete-Probability-Detector-in-VB6/*",
"tests/data/Endless-runner-Game_VB6.0/*",
"tests/data/Environment/*",
"tests/data/framework-vb6/*",
"tests/data/Genomin/*",
"tests/data/KORG_Read_pcg/*",
"tests/data/Markov-Chains-VB6/*",
"tests/data/Mix-two-signals-by-using-Spectral-Forecast-in-VB6-app-v1.0/*",
"tests/data/Mix-two-signals-by-using-Spectral-Forecast-in-VB6-app-v2.0/*",
"tests/data/NewTab/*",
"tests/data/OCX_Advanced_Control__VB6/*",
"tests/data/OCX_Advanced_Grid__VB6/*",
"tests/data/omelette-vb6/*",
"tests/data/opendialup/*",
"tests/data/Papaver-Genomics/*",
"tests/data/project-duplication-detection-system/*",
"tests/data/ProjectExaminer/*",
"tests/data/PromKappa-1.0-makes-Objective-Digital-Stains/*",
"tests/data/Prototype-software-for-Photon-pixel-coupling/*",
"tests/data/SK-ADO_Dan_SQL_Demo__VB6/*",
"tests/data/SK-Alarm_Clock__VB6/*",
"tests/data/SK-Password-Application-ADD-ON__VB6/*",
"tests/data/SK-SQL_Code_Generator_V2__VB6/*",
"tests/data/stdVBA-Inspiration/*",
"tests/data/SteamyDock/*",
"tests/data/Troyano-VB6-PoC/*",
"tests/data/ucJLDatePicker/*",
"tests/data/unlightvbe_qs/*",
"tests/data/vb6/*",
"tests/data/vb6-code/*",
"tests/data/Vb6.0/*",
"tests/data/VB6-2D-Physic-Engine/*",
"tests/data/VB6-add-GUI-objects-at-runtime/*",
"tests/data/VB6-samples/*",
"tests/data/VbScalesReader/*",
"tests/data/VPN-Lifeguard/*",
"tests/data/w.bloggar/*",
"tests/data/Win_Dialogs/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "vb6parse is a library for parsing and analyzing VB6 code, from projects, to controls, to modules, and forms."
homepage = "https://github.com/scriptandcompile/vb6parse"
documentation = "https://docs.rs/vb6parse"
readme = "README.md"
keywords = [
"vb6",
"parser",
"analyzer",
"vb6parse",
]
categories = [
"development-tools",
"parsing",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/scriptandcompile/vb6parse"
[lib]
name = "vb6parse"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[example]]
name = "audiostation_parse"
path = "examples/audiostation_parse.rs"
[[example]]
name = "cst_navigation"
path = "examples/cst_navigation.rs"
[[example]]
name = "cst_navigation_docs"
path = "examples/docs/cst_navigation.rs"
[[example]]
name = "cst_parse"
path = "examples/cst_parse.rs"
[[example]]
name = "debug_cst"
path = "examples/debug_cst.rs"
[[example]]
name = "debug_resource"
path = "examples/debug_resource.rs"
[[example]]
name = "error_handling"
path = "examples/docs/error_handling.rs"
[[example]]
name = "form_parsing"
path = "examples/docs/form_parsing.rs"
[[example]]
name = "hello_world"
path = "examples/docs/hello_world.rs"
[[example]]
name = "parse_class"
path = "examples/parse_class.rs"
[[example]]
name = "parse_control_only"
path = "examples/parse_control_only.rs"
[[example]]
name = "parse_form"
path = "examples/parse_form.rs"
[[example]]
name = "parse_module"
path = "examples/parse_module.rs"
[[example]]
name = "parse_project"
path = "examples/parse_project.rs"
[[example]]
name = "project_parsing"
path = "examples/docs/project_parsing.rs"
[[example]]
name = "sourcestream"
path = "examples/sourcestream.rs"
[[example]]
name = "tokenization"
path = "examples/docs/tokenization.rs"
[[example]]
name = "tokenstream"
path = "examples/tokenstream.rs"
[[test]]
name = "class"
path = "tests/class.rs"
[[test]]
name = "expression_whitespace"
path = "tests/expression_whitespace.rs"
[[test]]
name = "form"
path = "tests/form.rs"
[[test]]
name = "form_resource"
path = "tests/form_resource.rs"
[[test]]
name = "keyword_identifiers"
path = "tests/keyword_identifiers.rs"
[[test]]
name = "module"
path = "tests/module.rs"
[[test]]
name = "ppdm"
path = "tests/ppdm.rs"
[[test]]
name = "project"
path = "tests/project.rs"
[[bench]]
name = "class_files"
path = "benches/class_files.rs"
harness = false
[[bench]]
name = "form_files"
path = "benches/form_files.rs"
harness = false
[[bench]]
name = "form_resources"
path = "benches/form_resources.rs"
harness = false
[[bench]]
name = "lexer"
path = "benches/lexer.rs"
harness = false
[[bench]]
name = "module_files"
path = "benches/module_files.rs"
harness = false
[[bench]]
name = "parser"
path = "benches/parser.rs"
harness = false
[[bench]]
name = "project_files"
path = "benches/project_files.rs"
harness = false
[dependencies.ariadne]
version = "0.6.0"
[dependencies.either]
version = "1.15.0"
features = ["serde"]
[dependencies.encoding_rs]
version = "0.8.35"
[dependencies.image]
version = "0.25.9"
[dependencies.num_enum]
version = "0.7.5"
[dependencies.phf]
version = "0.13.1"
features = ["macros"]
[dependencies.rowan]
version = "0.16.1"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.strum]
version = "0.27.2"
[dependencies.strum_macros]
version = "0.27.2"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.uuid]
version = "1.21.0"
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.insta]
version = "1.46.3"
features = ["yaml"]
[target.'cfg(target_arch = "wasm32")'.dependencies.console_error_panic_hook]
version = "0.1"
[target.'cfg(target_arch = "wasm32")'.dependencies.serde-wasm-bindgen]
version = "0.6"
[target.'cfg(target_arch = "wasm32")'.dependencies.serde_json]
version = "1.0.149"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2.108"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies.criterion]
version = "0.8.1"
default-features = false
[target.'cfg(target_arch = "wasm32")'.dev-dependencies.insta]
version = "1.46.0"
features = ["yaml"]
[target.'cfg(target_arch = "wasm32")'.dev-dependencies.wasm-bindgen-test]
version = "0.3.58"
[lints.clippy]
pedantic = "warn"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1