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
38 lines
923 B
TOML
38 lines
923 B
TOML
[package]
|
|
name = "search"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lib]
|
|
path = "src/search.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
bitflags.workspace = true
|
|
collections.workspace = true
|
|
editor.workspace = true
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
language.workspace = true
|
|
menu.workspace = true
|
|
project.workspace = true
|
|
semantic_index.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
settings.workspace = true
|
|
smallvec.workspace = true
|
|
smol.workspace = true
|
|
theme.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|
|
workspace.workspace = true
|
|
|
|
[dev-dependencies]
|
|
client = { workspace = true, features = ["test-support"] }
|
|
editor = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
unindent.workspace = true
|
|
workspace = { workspace = true, features = ["test-support"] }
|