mirror of
				https://github.com/rust-lang/rust-analyzer.git
				synced 2025-11-03 13:13:18 +00:00 
			
		
		
		
	Bump bitflags
This commit is contained in:
		
							parent
							
								
									3ed27d21f2
								
							
						
					
					
						commit
						c6fad55c98
					
				
							
								
								
									
										10
									
								
								Cargo.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										10
									
								
								Cargo.lock
									
									
									
										generated
									
									
									
								
							@ -90,9 +90,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
[[package]]
 | 
					[[package]]
 | 
				
			||||||
name = "bitflags"
 | 
					name = "bitflags"
 | 
				
			||||||
version = "2.3.2"
 | 
					version = "2.4.1"
 | 
				
			||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
				
			||||||
checksum = "6dbe3c979c178231552ecba20214a8272df4e09f232a87aef4320cf06539aded"
 | 
					checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[[package]]
 | 
					[[package]]
 | 
				
			||||||
name = "byteorder"
 | 
					name = "byteorder"
 | 
				
			||||||
@ -494,7 +494,7 @@ version = "0.0.0"
 | 
				
			|||||||
dependencies = [
 | 
					dependencies = [
 | 
				
			||||||
 "arrayvec",
 | 
					 "arrayvec",
 | 
				
			||||||
 "base-db",
 | 
					 "base-db",
 | 
				
			||||||
 "bitflags 2.3.2",
 | 
					 "bitflags 2.4.1",
 | 
				
			||||||
 "cfg",
 | 
					 "cfg",
 | 
				
			||||||
 "cov-mark",
 | 
					 "cov-mark",
 | 
				
			||||||
 "dashmap",
 | 
					 "dashmap",
 | 
				
			||||||
@ -554,7 +554,7 @@ version = "0.0.0"
 | 
				
			|||||||
dependencies = [
 | 
					dependencies = [
 | 
				
			||||||
 "arrayvec",
 | 
					 "arrayvec",
 | 
				
			||||||
 "base-db",
 | 
					 "base-db",
 | 
				
			||||||
 "bitflags 2.3.2",
 | 
					 "bitflags 2.4.1",
 | 
				
			||||||
 "chalk-derive",
 | 
					 "chalk-derive",
 | 
				
			||||||
 "chalk-ir",
 | 
					 "chalk-ir",
 | 
				
			||||||
 "chalk-recursive",
 | 
					 "chalk-recursive",
 | 
				
			||||||
@ -1112,7 +1112,7 @@ version = "6.1.1"
 | 
				
			|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
					source = "registry+https://github.com/rust-lang/crates.io-index"
 | 
				
			||||||
checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
 | 
					checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
 | 
				
			||||||
dependencies = [
 | 
					dependencies = [
 | 
				
			||||||
 "bitflags 2.3.2",
 | 
					 "bitflags 2.4.1",
 | 
				
			||||||
 "crossbeam-channel",
 | 
					 "crossbeam-channel",
 | 
				
			||||||
 "filetime",
 | 
					 "filetime",
 | 
				
			||||||
 "fsevent-sys",
 | 
					 "fsevent-sys",
 | 
				
			||||||
 | 
				
			|||||||
@ -91,6 +91,7 @@ lsp-server = { version = "0.7.4" }
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# non-local crates
 | 
					# non-local crates
 | 
				
			||||||
anyhow = "1.0.75"
 | 
					anyhow = "1.0.75"
 | 
				
			||||||
 | 
					bitflags = "2.4.1"
 | 
				
			||||||
cargo_metadata = "0.18.1"
 | 
					cargo_metadata = "0.18.1"
 | 
				
			||||||
dissimilar = "1.0.7"
 | 
					dissimilar = "1.0.7"
 | 
				
			||||||
either = "1.9.0"
 | 
					either = "1.9.0"
 | 
				
			||||||
 | 
				
			|||||||
@ -13,7 +13,7 @@ doctest = false
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
[dependencies]
 | 
					[dependencies]
 | 
				
			||||||
arrayvec = "0.7.2"
 | 
					arrayvec = "0.7.2"
 | 
				
			||||||
bitflags = "2.1.0"
 | 
					bitflags.workspace = true
 | 
				
			||||||
cov-mark = "2.0.0-pre.1"
 | 
					cov-mark = "2.0.0-pre.1"
 | 
				
			||||||
# We need to freeze the version of the crate, as the raw-api feature is considered unstable
 | 
					# 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"] }
 | 
					dashmap = { version = "=5.4.0", features = ["raw-api"] }
 | 
				
			||||||
 | 
				
			|||||||
@ -15,7 +15,7 @@ doctest = false
 | 
				
			|||||||
cov-mark = "2.0.0-pre.1"
 | 
					cov-mark = "2.0.0-pre.1"
 | 
				
			||||||
itertools.workspace = true
 | 
					itertools.workspace = true
 | 
				
			||||||
arrayvec = "0.7.2"
 | 
					arrayvec = "0.7.2"
 | 
				
			||||||
bitflags = "2.1.0"
 | 
					bitflags.workspace = true
 | 
				
			||||||
smallvec.workspace = true
 | 
					smallvec.workspace = true
 | 
				
			||||||
ena = "0.14.0"
 | 
					ena = "0.14.0"
 | 
				
			||||||
either.workspace = true
 | 
					either.workspace = true
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user