[package]
edition = "2024"
name = "vb6semantic"
version = "0.1.0"
authors = ["ScriptAndCompile"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Semantic analysis and symbol table construction for VB6 code"
readme = "README.md"
keywords = [
"vb6",
"semantic-analysis",
"symbol-table",
"type-checking",
]
categories = [
"development-tools",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/scriptandcompile/vb6"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "vb6semantic"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[test]]
name = "location"
path = "tests/location.rs"
[[test]]
name = "references"
path = "tests/references.rs"
[dependencies.either]
version = "1.18.0"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0.20"
[dependencies.vb6core]
version = "0.2.0"
[dependencies.vb6parse]
version = "1.2.3"
[dev-dependencies.tempfile]
version = "3.8"
[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"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies.wasm-bindgen-test]
version = "0.3.77"
[lints.cargo]
unused_dependencies = "allow"