[package]
edition = "2021"
rust-version = "1.79"
name = "shwild"
version = "0.1.6"
authors = [
"Matt Wilson <matthew@synesis.com.au>",
"Zach Struck <zachstruck@gmail.com>",
]
build = false
exclude = [
"target",
".github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shell-compatible wildcard matching library"
homepage = "https://github.com/synesissoftware/shwild.Rust"
documentation = "https://docs.rs/shwild"
readme = "README.md"
keywords = [
"pattern-matching",
"shell",
"wildcards",
]
categories = [
"command-line-interface",
"parser-implementations",
"development-tools",
"text-processing",
]
license = "BSD-3-Clause"
repository = "https://github.com/synesissoftware/shwild.Rust"
[features]
_NEVER_TO_BE_ENABLED = []
default = ["lookup-ranges"]
lookup-ranges = ["dep:collect-rs"]
null-feature = []
test-regex = ["dep:regex"]
[lib]
name = "shwild"
path = "src/lib.rs"
[[example]]
name = "character-play"
path = "test/scratch/character-play/main.rs"
required-features = ["test-regex"]
[[example]]
name = "list-matching-files"
path = "examples/list-matching-files/main.rs"
[[example]]
name = "list-matching-files-compiled"
path = "examples/list-matching-files-compiled/main.rs"
[[bench]]
name = "cw-regex"
path = "benches/cw-regex.rs"
harness = false
required-features = ["test-regex"]
[[bench]]
name = "macros"
path = "benches/macros.rs"
harness = false
[[bench]]
name = "range_string-creation_functions"
path = "benches/range_string-creation_functions.rs"
harness = false
[[bench]]
name = "shwild-compiled_matcher"
path = "benches/shwild-compiled_matcher.rs"
harness = false
[[bench]]
name = "shwild-matches"
path = "benches/shwild-matches.rs"
harness = false
[dependencies.collect-rs]
version = "0.2"
features = []
optional = true
default-features = false
[dependencies.regex]
version = "1.11"
features = []
optional = true
default-features = false
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
default-features = false
[dev-dependencies.test_help-rs]
version = "0.1"
features = []
default-features = false