eventson 0.1.0

An event based JSON parser with competitive performance
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "eventson"
version = "0.1.0"
authors = ["Jake Dern"]
build = false
exclude = ["data/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An event based JSON parser with competitive performance"
readme = "README.md"
keywords = ["json"]
categories = ["parser-implementations"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/JakeDern/eventson"

[lib]
name = "eventson"
path = "src/lib.rs"
bench = false

[[example]]
name = "basic"
path = "examples/basic.rs"

[[test]]
name = "jsonchecker"
path = "tests/jsonchecker.rs"

[[test]]
name = "parity"
path = "tests/parity.rs"

[[bench]]
name = "lexer"
path = "benches/lexer.rs"
harness = false

[[bench]]
name = "parser"
path = "benches/parser.rs"
harness = false

[dependencies.lexical]
version = "7.0.4"
features = [
    "parse-integers",
    "parse-floats",
    "format",
]

[dev-dependencies.divan]
version = "0.1.21"

[dev-dependencies.serde_json]
version = "1.0.140"
features = ["raw_value"]

[dev-dependencies.serde_json_borrow]
version = "0.8.0"

[dev-dependencies.simd-json]
version = "0.15.1"

[profile.release]
debug = 2