stream_resp 0.1.6

StreamRESP is a RESP (Redis Serialization Protocol) parser implemented using a finite state machine (FSM) approach. Designed for streaming scenarios.
Documentation
[[bench]]
harness = false
name = "parser_benchmark"
path = "benches/parser_benchmark.rs"

[dependencies.atoi]
version = "2.0"

[dependencies.bytes]
version = "1.9.0"

[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"

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

[package]
authors = ["HanLin Chai <take3812@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["parsing", "network-programming", "database-implementations"]
description = "StreamRESP is a RESP (Redis Serialization Protocol) parser implemented using a finite state machine (FSM) approach. Designed for streaming scenarios."
documentation = "https://docs.rs/stream_resp/latest/stream_resp/"
edition = "2021"
keywords = ["redis", "resp", "parser", "streaming", "fsm"]
license = "MIT"
name = "stream_resp"
readme = "README.md"
repository = "https://github.com/daydaydrunk/stream_resp"
version = "0.1.6"

[package.metadata.docs.rs]
all-features = true

[profile.bench]
debug = 2

[profile.release]
codegen-units = 1
debug = 0
lto = true
opt-level = 3
panic = "abort"
strip = true