-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 906 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (35 loc) · 906 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
33
34
35
36
37
38
39
[package]
name = "rust_search"
version = "2.2.0"
description = "Blazingly fast file search library built in Rust"
edition = "2021"
authors = ["Parth Jadhav <jadhavparth99@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://www.parthjadhav.com/products/rust-search"
repository = "https://github.com/ParthJadhav/rust_search"
keywords = ["search", "files", "directories", "library"]
categories = ["filesystem", "algorithms"]
include = [
"/.github/**",
"/benches/**",
"/src/**",
"/tests/**",
"/Cargo.toml",
"/LICENSE-MIT",
"/README.md",
"/learnings.md",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1"
ignore = "0.4"
dirs = "4.0.0"
strsim = "0.10.0"
crossbeam-channel = "0.5.15"
rayon = "1.11.0"
[dev-dependencies]
dirs = "4.0.0"
[[bench]]
name = "bench_search"
harness = false