mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 05:00:16 +00:00
8c3ae8b264
This PR upgrades our [`bitflags`](https://crates.io/crates/bitflags) dependency to v2.4.2. This also fixes an error that was seen when running `clippy`: ``` error: &-masking with zero --> crates/fsevent/src/fsevent.rs:19:1 | 19 | / bitflags! { 20 | | #[repr(C)] 21 | | pub struct StreamFlags: u32 { 22 | | const NONE = 0x00000000; ... | 46 | | } 47 | | } | |_^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#bad_bit_mask = note: `#[deny(clippy::bad_bit_mask)]` on by default = note: this error originates in the macro `__impl_bitflags` which comes from the expansion of the macro `bitflags` (in Nightly builds, run with -Z macro-backtrace for more info) ``` Fixes #8681. Release Notes: - N/A
24 lines
393 B
TOML
24 lines
393 B
TOML
[package]
|
|
name = "fsevent"
|
|
version = "2.0.2"
|
|
license = "MIT"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
|
|
[lib]
|
|
path = "src/fsevent.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
bitflags.workspace = true
|
|
parking_lot.workspace = true
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
fsevent-sys = "3.0.2"
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-apple-darwin"]
|