[package]
edition = "2021"
name = "picomatch-rs"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust glob matching core for the picomatch-rs workspace."
homepage = "https://github.com/Maidang1/picomatch-rs"
documentation = "https://docs.rs/picomatch-rs"
readme = "README.md"
keywords = [
"glob",
"matcher",
"wildcard",
"picomatch",
"pattern",
]
categories = [
"filesystem",
"text-processing",
]
license = "MIT"
repository = "https://github.com/Maidang1/picomatch-rs"
[lib]
name = "picomatch_rs"
path = "src/lib.rs"
[[test]]
name = "api_picomatch"
path = "tests/api_picomatch.rs"
[[test]]
name = "api_posix"
path = "tests/api_posix.rs"
[[test]]
name = "bash"
path = "tests/bash.rs"
[[test]]
name = "bash_spec"
path = "tests/bash_spec.rs"
[[test]]
name = "braces"
path = "tests/braces.rs"
[[test]]
name = "brackets"
path = "tests/brackets.rs"
[[test]]
name = "dotfiles"
path = "tests/dotfiles.rs"
[[test]]
name = "dots_invalid"
path = "tests/dots_invalid.rs"
[[test]]
name = "extglobs"
path = "tests/extglobs.rs"
[[test]]
name = "extglobs_bash_generated"
path = "tests/extglobs_bash_generated.rs"
[[test]]
name = "extglobs_minimatch"
path = "tests/extglobs_minimatch.rs"
[[test]]
name = "extglobs_temp"
path = "tests/extglobs_temp.rs"
[[test]]
name = "globstars"
path = "tests/globstars.rs"
[[test]]
name = "issue_related"
path = "tests/issue_related.rs"
[[test]]
name = "malicious"
path = "tests/malicious.rs"
[[test]]
name = "match_basic"
path = "tests/match_basic.rs"
[[test]]
name = "minimatch"
path = "tests/minimatch.rs"
[[test]]
name = "negation"
path = "tests/negation.rs"
[[test]]
name = "non_globs"
path = "tests/non_globs.rs"
[[test]]
name = "options"
path = "tests/options.rs"
[[test]]
name = "options_expand_range"
path = "tests/options_expand_range.rs"
[[test]]
name = "options_format"
path = "tests/options_format.rs"
[[test]]
name = "options_ignore"
path = "tests/options_ignore.rs"
[[test]]
name = "options_noextglob"
path = "tests/options_noextglob.rs"
[[test]]
name = "options_noglobstar"
path = "tests/options_noglobstar.rs"
[[test]]
name = "options_on_match"
path = "tests/options_on_match.rs"
[[test]]
name = "parens"
path = "tests/parens.rs"
[[test]]
name = "posix_classes"
path = "tests/posix_classes.rs"
[[test]]
name = "qmarks"
path = "tests/qmarks.rs"
[[test]]
name = "regex_features"
path = "tests/regex_features.rs"
[[test]]
name = "scan_api"
path = "tests/scan_api.rs"
[[test]]
name = "slashes_posix"
path = "tests/slashes_posix.rs"
[[test]]
name = "slashes_windows"
path = "tests/slashes_windows.rs"
[[test]]
name = "special_characters"
path = "tests/special_characters.rs"
[[test]]
name = "stars"
path = "tests/stars.rs"
[[test]]
name = "wildmat"
path = "tests/wildmat.rs"
[dependencies.fancy-regex]
version = "0.14"
[dependencies.serde]
version = "1"
features = ["derive"]