Unnamed repository; edit this file 'description' to name the repository.
Bump bitflags
Laurențiu Nicola 2023-11-16
parent 3ed27d2 · commit c6fad55
-rw-r--r--Cargo.lock10
-rw-r--r--Cargo.toml1
-rw-r--r--crates/hir-def/Cargo.toml2
-rw-r--r--crates/hir-ty/Cargo.toml2
4 files changed, 8 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 0febbc5996..121dbcbfd9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -90,9 +90,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bitflags"
-version = "2.3.2"
+version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6dbe3c979c178231552ecba20214a8272df4e09f232a87aef4320cf06539aded"
+checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
[[package]]
name = "byteorder"
@@ -494,7 +494,7 @@ version = "0.0.0"
dependencies = [
"arrayvec",
"base-db",
- "bitflags 2.3.2",
+ "bitflags 2.4.1",
"cfg",
"cov-mark",
"dashmap",
@@ -554,7 +554,7 @@ version = "0.0.0"
dependencies = [
"arrayvec",
"base-db",
- "bitflags 2.3.2",
+ "bitflags 2.4.1",
"chalk-derive",
"chalk-ir",
"chalk-recursive",
@@ -1112,7 +1112,7 @@ version = "6.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
dependencies = [
- "bitflags 2.3.2",
+ "bitflags 2.4.1",
"crossbeam-channel",
"filetime",
"fsevent-sys",
diff --git a/Cargo.toml b/Cargo.toml
index 2c9740af68..68f4cef587 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -91,6 +91,7 @@ lsp-server = { version = "0.7.4" }
# non-local crates
anyhow = "1.0.75"
+bitflags = "2.4.1"
cargo_metadata = "0.18.1"
dissimilar = "1.0.7"
either = "1.9.0"
diff --git a/crates/hir-def/Cargo.toml b/crates/hir-def/Cargo.toml
index cbadfe7150..e4f2e14c51 100644
--- a/crates/hir-def/Cargo.toml
+++ b/crates/hir-def/Cargo.toml
@@ -13,7 +13,7 @@ doctest = false
[dependencies]
arrayvec = "0.7.2"
-bitflags = "2.1.0"
+bitflags.workspace = true
cov-mark = "2.0.0-pre.1"
# We need to freeze the version of the crate, as the raw-api feature is considered unstable
dashmap = { version = "=5.4.0", features = ["raw-api"] }
diff --git a/crates/hir-ty/Cargo.toml b/crates/hir-ty/Cargo.toml
index 4f421171a0..f2d2451511 100644
--- a/crates/hir-ty/Cargo.toml
+++ b/crates/hir-ty/Cargo.toml
@@ -15,7 +15,7 @@ doctest = false
cov-mark = "2.0.0-pre.1"
itertools.workspace = true
arrayvec = "0.7.2"
-bitflags = "2.1.0"
+bitflags.workspace = true
smallvec.workspace = true
ena = "0.14.0"
either.workspace = true