]> git.proxmox.com Git - rustc.git/blame - vendor/gix-pathspec/README.md
New upstream version 1.74.1+dfsg1
[rustc.git] / vendor / gix-pathspec / README.md
CommitLineData
781aab86
FG
1# `gix-pathspec`
2
3### Testing
4
5#### Fuzzing
6
7`cargo fuzz` is used for fuzzing, installable with `cargo install cargo-fuzz`.
8
9Targets can be listed with `cargo fuzz list` and executed via `cargo +nightly fuzz run <target>`,
10where `<target>` can be `parse` for example.
11
12### Notes
13
14- There is one additional keyword that `git` can parse, but that this crate doesn't support yet: the `prefix` keyword
15
16 [Here is a commit](https://github.com/git/git/commit/5be4efbefafcd5b81fe3d97e8395da1887b4902a) in which `prefix` is somewhat explained.