[package]
edition = "2021"
rust-version = "1.65"
name = "netstring-parser"
version = "0.1.0"
authors = ["Michael P. Jung <michael.jung@terreon.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple, zero-copy netstring parser for Rust, designed for incremental parsing of streaming data with minimal allocations."
readme = "README.md"
keywords = [
"netstring",
"parser",
"zero-copy",
]
license = "MIT or Apache-2.0"
repository = "https://github.com/bikeshedder/netstring-parser"
[lib]
name = "netstring_parser"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.thiserror]
version = "2.0.16"