read_until_slice 0.1.18

AsyncBufRead::read_until extension to take a slice as a delimiter instead of a single u8.
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 = "read_until_slice"
version = "0.1.18"
authors = ["Jerome David <programingjd@gmail.com>"]
build = false
include = [
    "Cargo.toml",
    "src",
    "tests",
    "examples",
    "LICENSE",
    "README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AsyncBufRead::read_until extension to take a slice as a delimiter instead of a single u8."
readme = "README.md"
keywords = [
    "tokio",
    "AsyncBufRead",
    "read_until",
    "slice",
    "delimiter",
]
categories = ["asynchronous"]
license = "MIT"
repository = "https://github.com/programingjd/read_until_slice"

[lib]
name = "read_until_slice"
path = "src/lib.rs"

[[example]]
name = "http"
path = "examples/http.rs"

[[test]]
name = "io_read_until_slice"
path = "tests/io_read_until_slice.rs"

[dependencies.pin-project-lite]
version = "0.2"
features = []
default-features = false

[dependencies.tokio]
version = "1.52"
features = ["io-util"]
default-features = false

[dev-dependencies.tokio]
version = "1.52"
features = [
    "macros",
    "rt",
    "net",
]
default-features = false

[dev-dependencies.tokio-test]
version = "0.4"