stream_resp 0.1.3

StreamRESP is a RESP (Redis Serialization Protocol) parser implemented using a finite state machine (FSM) approach. Designed for streaming scenarios.
Documentation
[dependencies.bytes]
version = "1.8.0"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"

[[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
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"
license = "MIT"
name = "stream_resp"
readme = "README.md"
repository = "https://github.com/daydaydrunk/stream_resp"
version = "0.1.3"

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

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