This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +359
-369
lines changed Expand file tree Collapse file tree 6 files changed +359
-369
lines changed Original file line number Diff line number Diff line change @@ -364,7 +364,7 @@ dependencies = [
364364 " tar" ,
365365 " tempfile" ,
366366 " termcolor" ,
367- " toml_edit 0.14.3 " ,
367+ " toml_edit" ,
368368 " unicode-width" ,
369369 " unicode-xid" ,
370370 " url 2.2.2" ,
@@ -451,7 +451,7 @@ dependencies = [
451451 " snapbox" ,
452452 " tar" ,
453453 " termcolor" ,
454- " toml_edit 0.14.3 " ,
454+ " toml_edit" ,
455455 " url 2.2.2" ,
456456]
457457
@@ -2041,15 +2041,6 @@ dependencies = [
20412041 " unicase" ,
20422042]
20432043
2044- [[package ]]
2045- name = " kstring"
2046- version = " 1.0.6"
2047- source = " registry+https://github.com/rust-lang/crates.io-index"
2048- checksum = " 8b310ccceade8121d7d77fee406160e457c2f4e7c7982d589da3499bc7ea4526"
2049- dependencies = [
2050- " serde" ,
2051- ]
2052-
20532044[[package ]]
20542045name = " kstring"
20552046version = " 2.0.0"
@@ -3003,19 +2994,35 @@ dependencies = [
30032994[[package ]]
30042995name = " racer"
30052996version = " 2.2.2"
3006- source = " registry+https://github.com/rust-lang/crates.io-index"
3007- checksum = " 64954e44fc0d1dcc64e0b9f2b155249ad62849eba25354b76ae1598d1e8f0fa0"
30082997dependencies = [
30092998 " bitflags" ,
30102999 " clap 2.34.0" ,
30113000 " derive_more" ,
30123001 " env_logger 0.7.1" ,
30133002 " humantime 2.0.1" ,
30143003 " lazy_static" ,
3004+ " lazycell" ,
30153005 " log" ,
3006+ " racer-cargo-metadata" ,
30163007 " rls-span" ,
30173008]
30183009
3010+ [[package ]]
3011+ name = " racer-cargo-metadata"
3012+ version = " 0.1.2"
3013+ dependencies = [
3014+ " racer-interner" ,
3015+ " serde" ,
3016+ " serde_json" ,
3017+ ]
3018+
3019+ [[package ]]
3020+ name = " racer-interner"
3021+ version = " 0.1.0"
3022+ dependencies = [
3023+ " serde" ,
3024+ ]
3025+
30193026[[package ]]
30203027name = " rand"
30213028version = " 0.7.3"
@@ -3246,7 +3253,7 @@ dependencies = [
32463253 " tokio-stream" ,
32473254 " tokio-util" ,
32483255 " toml" ,
3249- " toml_edit 0.13.4 " ,
3256+ " toml_edit" ,
32503257 " url 2.2.2" ,
32513258 " walkdir" ,
32523259]
@@ -5320,19 +5327,6 @@ dependencies = [
53205327 " serde" ,
53215328]
53225329
5323- [[package ]]
5324- name = " toml_edit"
5325- version = " 0.13.4"
5326- source = " registry+https://github.com/rust-lang/crates.io-index"
5327- checksum = " 744e9ed5b352340aa47ce033716991b5589e23781acb97cad37d4ea70560f55b"
5328- dependencies = [
5329- " combine" ,
5330- " indexmap" ,
5331- " itertools" ,
5332- " kstring 1.0.6" ,
5333- " serde" ,
5334- ]
5335-
53365330[[package ]]
53375331name = " toml_edit"
53385332version = " 0.14.3"
@@ -5342,7 +5336,7 @@ dependencies = [
53425336 " combine" ,
53435337 " indexmap" ,
53445338 " itertools" ,
5345- " kstring 2.0.0 " ,
5339+ " kstring" ,
53465340 " serde" ,
53475341]
53485342
Original file line number Diff line number Diff line change 171171#![ feature( const_precise_live_drops) ]
172172#![ feature( const_refs_to_cell) ]
173173#![ feature( decl_macro) ]
174- #![ cfg_attr( bootstrap, feature( derive_default_enum) ) ]
175174#![ feature( deprecated_suggestion) ]
176175#![ feature( doc_cfg) ]
177176#![ feature( doc_notable_trait) ]
Original file line number Diff line number Diff line change @@ -4016,7 +4016,6 @@ impl<T> [T] {
40164016 }
40174017}
40184018
4019- #[ cfg( not( bootstrap) ) ]
40204019impl < T , const N : usize > [ [ T ; N ] ] {
40214020 /// Takes a `&[[T; N]]`, and flattens it to a `&[T]`.
40224021 ///
Original file line number Diff line number Diff line change @@ -2518,15 +2518,13 @@ fn test_slice_from_ptr_range() {
25182518}
25192519
25202520#[ test]
2521- #[ cfg( not( bootstrap) ) ]
25222521#[ should_panic = "slice len overflow" ]
25232522fn test_flatten_size_overflow ( ) {
25242523 let x = & [ [ ( ) ; usize:: MAX ] ; 2 ] [ ..] ;
25252524 let _ = x. flatten ( ) ;
25262525}
25272526
25282527#[ test]
2529- #[ cfg( not( bootstrap) ) ]
25302528#[ should_panic = "slice len overflow" ]
25312529fn test_flatten_mut_size_overflow ( ) {
25322530 let x = & mut [ [ ( ) ; usize:: MAX ] ; 2 ] [ ..] ;
You can’t perform that action at this time.
0 commit comments