[[bench]]
harness = false
name = "parser_benchmark"
path = "benches/parser_benchmark.rs"
[dependencies.atoi]
version = "2.0"
[dependencies.bytes]
version = "1"
[dependencies.jemallocator]
optional = true
version = "0.5"
[dependencies.memchr]
version = "2.5"
[dependencies.slab]
version = "0.4"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[[example]]
name = "parser"
path = "examples/parser.rs"
[[example]]
name = "stream_parser"
path = "examples/stream_parser.rs"
[features]
default = []
jemalloc = ["jemallocator"]
[lib]
name = "stream_resp"
path = "src/lib.rs"
[package]
authors = ["HanLin Chai <take3812@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["parsing", "network-programming", "database-implementations"]
description = "A fully compliant RESP3 streaming parser"
documentation = "https://docs.rs/stream_resp/latest/stream_resp/"
edition = "2024"
homepage = "https://deepwiki.com/daydaydrunk/stream_resp"
keywords = ["redis", "resp", "resp3", "parser", "streaming"]
license = "MIT"
name = "stream_resp"
readme = "README.md"
repository = "https://github.com/daydaydrunk/stream_resp"
version = "1.2.2"
[package.metadata.docs.rs]
all-features = true
[profile.bench]
debug = 0
opt-level = 3
[profile.release]
codegen-units = 1
debug = 0
lto = true
opt-level = 3
panic = "abort"
strip = true