-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
34 lines (30 loc) · 855 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
34
[package]
name = "jwalk"
version = "0.8.1"
authors = ["Jesse Grosjean <jesse@hogbaysoftware.com>", "Sebastian Thiel <byronimo@gmail.com>"]
description = "Filesystem walk performed in parallel with streamed and sorted results."
documentation = "https://docs.rs/jwalk/"
homepage = "https://github.com/byron/jwalk"
repository = "https://github.com/byron/jwalk"
readme = "README.md"
keywords = ["directory", "recursive", "walk", "iterator", "parallel"]
categories = ["filesystem", "concurrency"]
license = "MIT"
edition = "2021"
[dependencies]
rayon = "1.5"
crossbeam = "0.8"
[dev-dependencies]
criterion = "0.5.1"
fs_extra = "1.2"
walkdir = "2.3"
ignore = "0.4"
tempfile = "3.1"
num_cpus = "1.12"
lazy_static = "1.4"
# For examples
clap = { version = "4.4.13", features = ["derive"] }
bytesize = "1.3.0"
[[bench]]
name = "walk_benchmark"
harness = false