In uv-globfilter, use the workspace fs-err in dev-dependencies (#9262)

<!--
Thank you for contributing to uv! To help us out with reviewing, please
consider the following:

- Does this pull request include a summary of the change? (See below.)
- Does this pull request include a descriptive title?
- Does this pull request include references to any relevant issues?
-->

## Summary

In uv-globfilter, use the workspace `fs-err` in `dev-dependencies`.

This fixes an unnecessary dev-dependency on `fs-err` 2.x even after the
workspace fs-err was updated to 3.x in
https://github.com/astral-sh/uv/pull/8625.

The `Cargo.lock` file still has `fs-err v2.11.0` after this PR, but it
is via `tracing-durations-export v0.3.0` rather than directly required
by any `uv` crate.

## Test Plan

<!-- How was it tested? -->

```
$ cd crates/uv-globfilter/
$ cargo test
```
This commit is contained in:
Ben Beasley 2024-11-19 22:59:37 -05:00 committed by GitHub
parent 7c4c15b879
commit 80ab562f9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

2
Cargo.lock generated
View File

@ -5007,7 +5007,7 @@ dependencies = [
name = "uv-globfilter"
version = "0.1.0"
dependencies = [
"fs-err 2.11.0",
"fs-err 3.0.0",
"globset",
"insta",
"regex",

View File

@ -19,7 +19,7 @@ tracing = { workspace = true }
walkdir = { workspace = true }
[dev-dependencies]
fs-err = "2.11.0"
fs-err = { workspace = true }
insta = "1.41.1"
tempfile = "3.14.0"