-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (61 loc) · 1.28 KB
/
Copy pathCargo.toml
File metadata and controls
69 lines (61 loc) · 1.28 KB
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.7.0"
authors = ["Sean Olson <olson.sean.k@gmail.com>"]
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 = "2024"
rust-version = "1.85.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.14.0"
nom = "^7.0.0"
pori = "=0.0.0"
thiserror = "^2.0.0"
[dependencies.miette]
version = "^5.10.0"
default-features = false
optional = true
[dependencies.regex]
version = "^1.12.0"
default-features = false
features = [
"perf",
"std",
"unicode-case",
]
[dependencies.tardar]
version = "^0.1.0"
optional = true
[dependencies.walkdir]
version = "^2.5.0"
optional = true
[dev-dependencies]
build-fs-tree = "^0.7.0"
dunce = "^1.0.0"
expect_macro = "^0.2.0"
rstest = "^0.26.0"
tempfile = "^3.24.0"