diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 02:49:50 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 02:49:50 +0000 |
commit | 9835e2ae736235810b4ea1c162ca5e65c547e770 (patch) | |
tree | 3fcebf40ed70e581d776a8a4c65923e8ec20e026 /vendor/globset | |
parent | Releasing progress-linux version 1.70.0+dfsg2-1~progress7.99u1. (diff) | |
download | rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.tar.xz rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.zip |
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/globset')
-rw-r--r-- | vendor/globset/.cargo-checksum.json | 2 | ||||
-rw-r--r-- | vendor/globset/Cargo.toml | 4 | ||||
-rw-r--r-- | vendor/globset/README.md | 8 |
3 files changed, 7 insertions, 7 deletions
diff --git a/vendor/globset/.cargo-checksum.json b/vendor/globset/.cargo-checksum.json index 29f8dbafa..b3b8ba8d5 100644 --- a/vendor/globset/.cargo-checksum.json +++ b/vendor/globset/.cargo-checksum.json @@ -1 +1 @@ -{"files":{"COPYING":"01c266bced4a434da0051174d6bee16a4c82cf634e2679b6155d40d75012390f","Cargo.toml":"79bfb32bb9c1e821401432cce035ca292b6cf97ee43947d19ce4bb8977b3a415","LICENSE-MIT":"0f96a83840e146e43c0ec96a22ec1f392e0680e6c1226e6f3ba87e0740af850f","README.md":"719f0882004ec6da729b532623db73a345f31b27766c36d86f483f37dee7831e","UNLICENSE":"7e12e5df4bae12cb21581ba157ced20e1986a0508dd10d0e8a4ab9a4cf94e85c","benches/bench.rs":"05a00ec1b35dbd7a202e280e862a784b3a972574b19201ef66ac7980521ce4ac","src/glob.rs":"ac79317d5dec80e7c4e8a1e8b3cc7d78080f110557330779fb9152f0b2ec20d5","src/lib.rs":"d750f25177c8ad825607f318be31d9afa16a14a362f9cc5a9bafb2ca79fcbcac","src/pathutil.rs":"1b11ea31529d14a7f98d56d3b46f9693d6cdabe812b366d344d4b786eb8a730d","src/serde_impl.rs":"3627c7f2fb35c678fa7b35a3c8ad7136f25a69c243fc8a449f75b4bc81df180b"},"package":"0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a"}
\ No newline at end of file +{"files":{"COPYING":"01c266bced4a434da0051174d6bee16a4c82cf634e2679b6155d40d75012390f","Cargo.toml":"df4f62e6b5ba51cf9df9956fe37f7cb38dde335a3722d0d6d0f5d72b6be7e57d","LICENSE-MIT":"0f96a83840e146e43c0ec96a22ec1f392e0680e6c1226e6f3ba87e0740af850f","README.md":"f521ea13d4b8622f86998487e6a00ec12663dbe0a59a6c9e13ef44ece0284332","UNLICENSE":"7e12e5df4bae12cb21581ba157ced20e1986a0508dd10d0e8a4ab9a4cf94e85c","benches/bench.rs":"05a00ec1b35dbd7a202e280e862a784b3a972574b19201ef66ac7980521ce4ac","src/glob.rs":"ac79317d5dec80e7c4e8a1e8b3cc7d78080f110557330779fb9152f0b2ec20d5","src/lib.rs":"d750f25177c8ad825607f318be31d9afa16a14a362f9cc5a9bafb2ca79fcbcac","src/pathutil.rs":"1b11ea31529d14a7f98d56d3b46f9693d6cdabe812b366d344d4b786eb8a730d","src/serde_impl.rs":"3627c7f2fb35c678fa7b35a3c8ad7136f25a69c243fc8a449f75b4bc81df180b"},"package":"029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc"}
\ No newline at end of file diff --git a/vendor/globset/Cargo.toml b/vendor/globset/Cargo.toml index 4a52e0503..148aab674 100644 --- a/vendor/globset/Cargo.toml +++ b/vendor/globset/Cargo.toml @@ -12,7 +12,7 @@ [package] edition = "2018" name = "globset" -version = "0.4.9" +version = "0.4.10" authors = ["Andrew Gallant <jamslam@gmail.com>"] description = """ Cross platform single glob and glob set matching. Glob set matching is the @@ -40,7 +40,7 @@ bench = false version = "0.7.3" [dependencies.bstr] -version = "0.2.0" +version = "1.1.0" features = ["std"] default-features = false diff --git a/vendor/globset/README.md b/vendor/globset/README.md index 806c915b9..b7a4ebf6a 100644 --- a/vendor/globset/README.md +++ b/vendor/globset/README.md @@ -19,7 +19,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -globset = "0.3" +globset = "0.4" ``` ### Features @@ -78,12 +78,12 @@ assert_eq!(set.matches("src/bar/baz/foo.rs"), vec![0, 2]); This crate implements globs by converting them to regular expressions, and executing them with the -[`regex`](https://github.com/rust-lang-nursery/regex) +[`regex`](https://github.com/rust-lang/regex) crate. For single glob matching, performance of this crate should be roughly on par with the performance of the -[`glob`](https://github.com/rust-lang-nursery/glob) +[`glob`](https://github.com/rust-lang/glob) crate. (`*_regex` correspond to benchmarks for this library while `*_glob` correspond to benchmarks for the `glob` library.) Optimizations in the `regex` crate may propel this library past `glob`, @@ -108,7 +108,7 @@ test many_short_glob ... bench: 1,063 ns/iter (+/- 47) test many_short_regex_set ... bench: 186 ns/iter (+/- 11) ``` -### Comparison with the [`glob`](https://github.com/rust-lang-nursery/glob) crate +### Comparison with the [`glob`](https://github.com/rust-lang/glob) crate * Supports alternate "or" globs, e.g., `*.{foo,bar}`. * Can match non-UTF-8 file paths correctly. |