-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 846 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "read_until_slice"
version = "0.1.17"
edition = "2024"
authors = ["Jerome David <[email protected]>"]
categories = ["asynchronous"]
description = "AsyncBufRead::read_until extension to take a slice as a delimiter instead of a single u8."
keywords = ["tokio", "AsyncBufRead", "read_until", "slice", "delimiter"]
license = "MIT"
repository = "https://github.com/programingjd/read_until_slice"
include = [
"Cargo.toml", "src", "tests", "examples", "LICENSE", "README.md"
]
[dependencies.tokio]
version = "1.51"
default-features = false
features = ["io-util"]
[dependencies.pin-project-lite]
version = "0.2"
default-features = false
features = []
[dev-dependencies.tokio]
version = "1.51"
default-features = false
features = ["macros", "rt", "net"]
[dev-dependencies.tokio-test]
version = "0.4"
[[example]]
name = "http"