[package]
edition = "2021"
name = "cabalist-parser"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CST/AST parser for .cabal files with round-trip fidelity"
homepage = "https://github.com/joshburgess/cabalist"
readme = "README.md"
keywords = [
"haskell",
"cabal",
"tui",
"package-manager",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joshburgess/cabalist"
[lib]
name = "cabalist_parser"
path = "src/lib.rs"
[[test]]
name = "ast_integration"
path = "tests/ast_integration.rs"
[[test]]
name = "corpus"
path = "tests/corpus.rs"
[[test]]
name = "edit_scenarios"
path = "tests/edit_scenarios.rs"
[[test]]
name = "edit_stress"
path = "tests/edit_stress.rs"
[[test]]
name = "error_recovery"
path = "tests/error_recovery.rs"
[[test]]
name = "proptest_roundtrip"
path = "tests/proptest_roundtrip.rs"
[[test]]
name = "real_world_corpus"
path = "tests/real_world_corpus.rs"
[[test]]
name = "validation_integration"
path = "tests/validation_integration.rs"
[dependencies.thiserror]
version = "2"
[dev-dependencies.proptest]
version = "1"