globset 0.4.19

Cross platform single glob and glob set matching. Glob set matching is the process of matching one or more glob patterns against a single candidate path simultaneously, and returning all of the globs that matched.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "globset"
version = "0.4.19"
authors = ["Andrew Gallant <jamslam@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Cross platform single glob and glob set matching. Glob set matching is the
process of matching one or more glob patterns against a single candidate path
simultaneously, and returning all of the globs that matched.
"""
homepage = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"
documentation = "https://docs.rs/globset"
readme = "README.md"
keywords = [
    "regex",
    "glob",
    "multiple",
    "set",
    "pattern",
]
license = "Unlicense OR MIT"
repository = "https://github.com/BurntSushi/ripgrep/tree/master/crates/globset"

[features]
arbitrary = ["dep:arbitrary"]
default = ["log"]
serde1 = ["serde"]
simd-accel = []

[lib]
name = "globset"
path = "src/lib.rs"
bench = false

[[bench]]
name = "bench"
path = "benches/bench.rs"

[dependencies.aho-corasick]
version = "1.1.1"

[dependencies.arbitrary]
version = "1.3.2"
features = ["derive"]
optional = true

[dependencies.bstr]
version = "1.6.2"
features = ["std"]
default-features = false

[dependencies.log]
version = "0.4.20"
optional = true

[dependencies.regex-automata]
version = "0.4.0"
features = [
    "std",
    "perf",
    "syntax",
    "meta",
    "nfa",
    "hybrid",
]
default-features = false

[dependencies.regex-syntax]
version = "0.8.0"
features = ["std"]
default-features = false

[dependencies.serde]
version = "1.0.188"
optional = true

[dev-dependencies.glob]
version = "0.3.1"

[dev-dependencies.serde_json]
version = "1.0.107"