[package] name = "rsonpath-syntax" version = "0.3.1" authors = ["Mateusz Gienieczko "] description = "A JSONPath parser." readme = "README.md" license = "MIT" keywords = ["json", "jsonpath", "query", "search", "parser"] exclude = ["tests", "src/cli.rs"] categories = ["parser-implementations", "text-processing"] repository = "https://github.com/V0ldek/rsonpath" edition = "2021" rust-version = "1.67.1" [package.metadata.docs.rs] rustdoc-args = ["--cfg", "docsrs"] all-features = true [dependencies] arbitrary = { version = "1.3.1", features = ["derive"], optional = true } owo-colors = { version = "4.0.0", default-features = false, optional = true } nom = "7.1.3" thiserror = "1.0.58" unicode-width = "0.1.11" [dev-dependencies] insta = "1.38.0" pretty_assertions = "1.4.0" proptest = "1.4.0" test-case = "3.3.1" [features] default = [] arbitrary = ["dep:arbitrary"] color = ["dep:owo-colors"]