# SPDX-FileCopyrightText: © 2023-2024 Decompollaborate # SPDX-License-Identifier: MIT [package] name = "mapfile_parser" version = "2.7.1" edition = "2021" rust-version = "1.65.0" authors = ["Anghelo Carvajal "] description = "Map file parser library focusing decompilation projects" readme = "README.md" repository = "https://github.com/Decompollaborate/mapfile_parser" license = "MIT" keywords = ["mapfile", "parser", "decomp", "decompilation"] exclude = ["tests/output", "*.py", "*.pyi", ".github", ".markdownlint.jsonc", "mypy.ini", "requirements.txt", "pyproject.toml", "tests"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "mapfile_parser" path = "src/rs/lib.rs" crate-type = ["cdylib", "staticlib", "rlib"] [dependencies] regex = "1.10.2" pyo3 = { version = "0.20.0", optional = true, features = ["abi3", "abi3-py37"]} lazy_static = "1.4.0" serde = { version = "1.0", features = ["derive"], optional = true } [features] python_bindings = ["dep:pyo3"] serde = ["dep:serde"]