-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
69 lines (61 loc) · 1.27 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "wax"
version = "0.6.0"
authors = ["Sean Olson <[email protected]>"]
description = "Opinionated and portable globs that can be matched against paths and directory trees."
repository = "https://github.com/olson-sean-k/wax"
readme = "README.md"
edition = "2021"
rust-version = "1.75.0"
license = "MIT"
keywords = [
"glob",
"pattern",
"regex"
]
categories = ["filesystem"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs"
]
[features]
default = ["walk"]
# Integrates with `miette` and provides `Diagnostic` error types and reporting.
miette = [
"dep:miette",
"dep:tardar",
]
# Provides APIs for matching globs against directory trees.
walk = ["dep:walkdir"]
[dependencies]
const_format = "^0.2.0"
itertools = "^0.11.0"
nom = "^7.0.0"
pori = "=0.0.0"
thiserror = "^1.0.0"
[dependencies.miette]
version = "^5.10.0"
default-features = false
optional = true
[dependencies.regex]
version = "^1.9.0"
default-features = false
features = [
"perf",
"std",
"unicode-case"
]
[dependencies.tardar]
version = "^0.1.0"
optional = true
[dependencies.walkdir]
version = "^2.4.0"
optional = true
[dev-dependencies]
build-fs-tree = "^0.6.0"
dunce = "^1.0.0"
expect_macro = "^0.2.0"
rstest = "^0.18.0"
tempfile = "^3.8.0"