[package] name = "chisel-json" version = "1.0.7" edition = "2021" authors = ["Jonny Coombes "] rust-version = "1.56" description = "Simple JSON parser for Rust" license = "MIT OR Apache-2.0" keywords = ["json", "parser"] categories = ["parser-implementations", "text-processing"] repository = "https://github.com/jonnycoombes/chisel-core" [dependencies] fast-float = "0.2.0" lexical={version = "6.1.1", features = ["parse-floats", "parse-integers"], optional = true} chisel-decoders = "1.0.7" [dev-dependencies] bytesize = "1.2.0" criterion = {version = "0.5.1", features = ["html_reports"]} pprof = {version = "0.13.0", features = ["flamegraph", "criterion", "protobuf"]} [features] default = ["mixed_numerics" ] mixed_numerics = ["lexical"] [[bench]] name = "dom_parsing" harness = false [[bench]] name = "sax_parsing" harness = false [[bench]] name = "lexing" harness = false