File tree 4 files changed +13
-4
lines changed
4 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ rust_library(
36
36
version = "0.1.0" ,
37
37
deps = [
38
38
"//third_party/rust/crates:ansi_term" ,
39
- "//third_party/rust/crates:inventory" ,
40
39
"//third_party/rust/crates:num_traits" ,
41
40
"//third_party/rust/crates:once_cell" ,
42
41
"//third_party/rust/crates:pest" ,
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ rust_binary(
34
34
"//:serde_annotate" ,
35
35
"//third_party/rust/crates:anyhow" ,
36
36
"//third_party/rust/crates:clap" ,
37
- "//third_party/rust/crates:inventory" ,
38
37
"//third_party/rust/crates:serde" ,
39
38
"//third_party/rust/crates:serde_bytes" ,
40
39
],
Original file line number Diff line number Diff line change @@ -22,11 +22,21 @@ rust_test(
22
22
"//:serde_annotate" ,
23
23
"//third_party/rust/crates:anyhow" ,
24
24
"//third_party/rust/crates:deser_hjson" ,
25
- "//third_party/rust/crates:inventory" ,
26
25
"//third_party/rust/crates:json5" ,
27
26
"//third_party/rust/crates:serde" ,
28
27
"//third_party/rust/crates:serde_bytes" ,
29
28
"//third_party/rust/crates:serde_json" ,
30
29
"//third_party/rust/crates:serde_yaml" ,
31
30
],
32
31
)
32
+
33
+ rust_test (
34
+ name = "test_erased" ,
35
+ srcs = ["test_erased.rs" ],
36
+ edition = "2021" ,
37
+ deps = [
38
+ "//:serde_annotate" ,
39
+ "//third_party/rust/crates:anyhow" ,
40
+ "//third_party/rust/crates:serde" ,
41
+ ],
42
+ )
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ def fetch_remote_crates():
7
7
def rust_deps ():
8
8
rust_repositories (
9
9
edition = "2021" ,
10
- version = "1.60.0" ,
10
+ version = "nightly" ,
11
+ iso_date = "2022-09-28" ,
11
12
)
12
13
fetch_remote_crates ()
You can’t perform that action at this time.
0 commit comments