resp-proto 0.0.1

RESP2/RESP3 protocol parser and encoder
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 = "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"