-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (26 loc) · 818 Bytes
/
Cargo.toml
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
33
[package]
name = "read_chunk_iter"
version = "0.2.0"
edition = "2018"
license = "MIT"
description = "Iterator adapters over a reader that yield fixed-size chunks at a time."
repository = "https://github.com/rlee287/read_chunk_iter"
readme = "README.md"
keywords = ["iterator"]
categories = ["filesystem"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
autodetect_vectored = []
[dependencies]
atomic-wait = "1.1.0"
[dev-dependencies]
criterion = { version = "0.5", default-features = false, features = ["html_reports", "plotters", "rayon", "cargo_bench_support"] }
tempfile = "3.8.1"
poly1305 = "0.8.0"
itertools = "0.12.0"
[[bench]]
name = "chunked_file_read"
harness = false
[package.metadata.docs.rs]
features = ["autodetect_vectored"]