[package]
edition = "2024"
name = "glob-set"
version = "0.0.1"
authors = ["Ian Macalinao <me@ianm.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A globset-compatible glob matcher -- `no_std`, no regex, built on glob-matcher"
homepage = "https://github.com/lintel-rs/lintel"
readme = "README.md"
keywords = [
"glob",
"pattern",
"matching",
]
categories = [
"no-std",
"filesystem",
]
license = "Apache-2.0"
repository = "https://github.com/lintel-rs/lintel"
resolver = "2"
[lib]
name = "glob_set"
path = "src/lib.rs"
[[test]]
name = "globset_compat"
path = "tests/globset_compat.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[dependencies.aho-corasick]
version = "1.1.4"
default-features = false
[dependencies.glob-matcher]
version = "0.0.1"
[dependencies.hashbrown]
version = "0.16.1"
features = ["default-hasher"]
default-features = false
[dependencies.tried]
version = "0.0.1"
[dev-dependencies.criterion]
version = "0.8.2"
[dev-dependencies.globset]
version = "0.4.18"
[lints.clippy]
cognitive_complexity = "deny"
must_use_candidate = "allow"
std_instead_of_alloc = "deny"
std_instead_of_core = "deny"
too_many_lines = "deny"
unwrap_used = "deny"
[lints.clippy.complexity]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1