[package]
edition = "2024"
name = "resp-proto"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RESP2/RESP3 protocol parser and encoder"
readme = "README.md"
keywords = [
"redis",
"resp",
"protocol",
"parser",
]
categories = [
"network-programming",
"parsing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ringline-rs/resp-proto"
[features]
default = []
resp3 = ["dep:ryu"]
[lib]
name = "resp_proto"
path = "src/lib.rs"
[dependencies.bytes]
version = "1"
[dependencies.itoa]
version = "1"
[dependencies.memchr]
version = "2"
[dependencies.ryu]
version = "1"
optional = true
[dependencies.thiserror]
version = "2"