[package]
edition = "2024"
name = "memcache-proto"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Memcache ASCII and binary protocol parser and encoder"
readme = "README.md"
keywords = [
"memcache",
"memcached",
"protocol",
"parser",
]
categories = [
"network-programming",
"parsing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ringline-rs/memcache-proto"
[features]
ascii = []
binary = []
default = ["ascii"]
full = [
"ascii",
"binary",
]
[lib]
name = "memcache_proto"
path = "src/lib.rs"
[dependencies.itoa]
version = "1"
[dependencies.memchr]
version = "2"
[dependencies.thiserror]
version = "2"