blob: 119678b06e994acf70055b7226ba256b4aa4d0a0 [file] [log] [blame] [view]
# `selectors`
`selectors` is a library for parsing and converting diagnostics selectors.
## Building
This project should be automatically included in builds.
## Using
`selectors` can be used by depending on the
`//src/lib/diagnostics/selectors` gn target and then using
the `selectors` crate in a rust project.
`selectors` is not available in the sdk and is intended to be used only by
diagnostics binaries.
## Testing
Unit tests for `selectors` are available in the
`selectors` package:
```
$ fx test selectors_tests
```
You'll need to include `//src/lib/diagnostics/selectors:tests` in your
build, either by using `fx args` to put it under `universe_package_labels`, or
by `fx set [....] --with //src/lib/diagnostics/selectors:tests`.