[dependencies.pin-project-lite]
default-features = false
features = []
version = "0.2"
[dependencies.tokio]
default-features = false
features = ["io-util"]
version = "1.49"
[dev-dependencies.tokio]
default-features = false
features = ["macros", "rt", "net"]
version = "1.49"
[dev-dependencies.tokio-test]
version = "0.4"
[[example]]
name = "http"
path = "examples/http.rs"
[lib]
name = "read_until_slice"
path = "src/lib.rs"
[package]
authors = ["Jerome David <programingjd@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous"]
description = "AsyncBufRead::read_until extension to take a slice as a delimiter instead of a single u8."
edition = "2024"
include = ["Cargo.toml", "src", "tests", "examples", "LICENSE", "README.md"]
keywords = ["tokio", "AsyncBufRead", "read_until", "slice", "delimiter"]
license = "MIT"
name = "read_until_slice"
readme = "README.md"
repository = "https://github.com/programingjd/read_until_slice"
version = "0.1.15"
[[test]]
name = "io_read_until_slice"
path = "tests/io_read_until_slice.rs"