actson 2.1.0

A reactive (or non-blocking, or asynchronous) JSON parser
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 = "2021"
name = "actson"
version = "2.1.0"
authors = ["Michel Kraemer <michel@undercouch.de>"]
build = false
exclude = [
    "tests/json_test_suite",
    "!tests/json_test_suite/test_parsing",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A reactive (or non-blocking, or asynchronous) JSON parser"
readme = "README.md"
keywords = [
    "json",
    "parser",
    "parsing",
    "deserialization",
]
categories = [
    "encoding",
    "parser-implementations",
]
license = "MIT"
repository = "https://github.com/michel-kraemer/actson-rs"

[features]
default = []
serde_json = ["dep:serde_json"]
tokio = ["dep:tokio"]

[lib]
name = "actson"
path = "src/lib.rs"

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

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

[dependencies.btoi]
version = "0.5.0"

[dependencies.num-traits]
version = "0.2.19"

[dependencies.serde_json]
version = "1.0.141"
features = ["float_roundtrip"]
optional = true

[dependencies.thiserror]
version = "2.0.12"

[dependencies.tokio]
version = "1.47.0"
features = [
    "io-util",
    "rt-multi-thread",
]
optional = true

[dev-dependencies.criterion]
version = "0.7.0"

[dev-dependencies.dtoa]
version = "1.0.10"

[dev-dependencies.serde_json]
version = "1.0.141"
features = ["float_roundtrip"]

[dev-dependencies.tokio]
version = "1.47.0"
features = [
    "fs",
    "macros",
    "rt-multi-thread",
]