-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (24 loc) · 716 Bytes
/
Cargo.toml
File metadata and controls
30 lines (24 loc) · 716 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
[package]
name = "jw"
version = "2.2.10"
edition = "2021"
description = "Blazingly fast filesystem traverser and mass file hasher with diff support, powered by jwalk and xxh3!"
license = "GPL-3.0-or-later"
readme = "README.md"
exclude = [
".github",
"target"
]
repository = "https://github.com/PsychedelicShayna/jw"
homepage = "https://github.com/PsychedelicShayna/jw"
categories = ["command-line-utilities", "filesystem"]
keywords = ["jwalk", "diff", "file", "search", "hash" ]
[dependencies]
clap = { version = "4.5.17" }
crossbeam-channel = "0.5.15"
jwalk = "0.8.1"
md5 = "0.7.0"
memmap2 = "0.9.5"
rayon = "1.10.0"
sha2 = "0.10.8"
xxhash-rust = { version = "0.8.12", features = ["xxh3", "const_xxh3"] }