[package]
edition = "2021"
name = "lex-core"
version = "0.10.0"
authors = ["lex contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser library for the lex format"
readme = false
keywords = [
"parser",
"format",
"lex",
]
categories = [
"parsing",
"text-processing",
]
license = "MIT"
repository = "https://github.com/lex-fmt/lex"
[features]
test-support = []
[lib]
name = "lex_core"
path = "src/lib.rs"
doctest = false
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "detokenizer"
path = "tests/detokenizer/main.rs"
[[test]]
name = "integration"
path = "tests/integration/main.rs"
[[test]]
name = "proptests"
path = "tests/proptests/main.rs"
[[test]]
name = "tokenizer_documents"
path = "tests/tokenizer_documents.rs"
[[test]]
name = "tokenizer_elements"
path = "tests/tokenizer_elements.rs"
[dependencies.logos]
version = "0.16"
[dependencies.once_cell]
version = "1.21"
[dependencies.polymath-rs]
version = "0.1.2"
[dependencies.regex]
version = "1.12.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dev-dependencies.insta]
version = "1.47"
[dev-dependencies.proptest]
version = "1.11"
[dev-dependencies.trybuild]
version = "1.0"