Skip to content

Commit 0ee1655

Browse files
authored
Removed lints causing ICE (#326)
* Removed lints causing ICE * depsup
1 parent 9e75240 commit 0ee1655

File tree

12 files changed

+20
-19
lines changed

12 files changed

+20
-19
lines changed

Cargo.toml

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
[workspace]
22
resolver = "2"
33

4-
members = ["test_util", "vergen", "vergen-git2", "vergen-gitcl", "vergen-gix", "vergen-lib", "vergen-pretty"]
4+
members = [
5+
"test_util",
6+
"vergen",
7+
"vergen-git2",
8+
"vergen-gitcl",
9+
"vergen-gix",
10+
"vergen-lib",
11+
"vergen-pretty",
12+
]

test_util/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ the [`TestRepos`] struct to creat temporary git repositories useful for `vergen-
7171
#![cfg_attr(
7272
all(feature = "unstable", nightly),
7373
feature(
74-
diagnostic_namespace,
7574
lint_reasons,
7675
multiple_supertrait_upcastable,
7776
must_not_suspend,
@@ -246,7 +245,7 @@ the [`TestRepos`] struct to creat temporary git repositories useful for `vergen-
246245
must_not_suspend,
247246
non_exhaustive_omitted_patterns,
248247
unfulfilled_lint_expectations,
249-
unknown_or_malformed_diagnostic_attributes,
248+
// unknown_or_malformed_diagnostic_attributes,
250249
unnameable_types,
251250
)
252251
)]

vergen-git2/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ time = { version = "0.3.23", features = [
4040
"local-offset",
4141
"parsing",
4242
] }
43-
vergen = { version = "9.0.0-beta.2", path = "../vergen", default-features = false }
43+
vergen = { version = "9.0.0", path = "../vergen", default-features = false }
4444
vergen-lib = { version = "0.1.0", path = "../vergen-lib", features = ["git"] }
4545

4646
[build-dependencies]

vergen-git2/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,6 @@ let build = BuildBuilder::default().build_timestamp(true).build()?;"##
251251
#![cfg_attr(
252252
all(feature = "unstable", nightly),
253253
feature(
254-
diagnostic_namespace,
255254
lint_reasons,
256255
multiple_supertrait_upcastable,
257256
must_not_suspend,
@@ -426,7 +425,7 @@ let build = BuildBuilder::default().build_timestamp(true).build()?;"##
426425
must_not_suspend,
427426
non_exhaustive_omitted_patterns,
428427
unfulfilled_lint_expectations,
429-
unknown_or_malformed_diagnostic_attributes,
428+
// unknown_or_malformed_diagnostic_attributes,
430429
unnameable_types,
431430
)
432431
)]

vergen-gitcl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ time = { version = "0.3.23", features = [
3939
"local-offset",
4040
"parsing",
4141
] }
42-
vergen = { version = "9.0.0-beta.2", path = "../vergen", default-features = false }
42+
vergen = { version = "9.0.0", path = "../vergen", default-features = false }
4343
vergen-lib = { version = "0.1.0", path = "../vergen-lib", features = ["git"] }
4444

4545
[build-dependencies]

vergen-gitcl/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,6 @@ let build = BuildBuilder::default().build_timestamp(true).build()?;"##
251251
#![cfg_attr(
252252
all(feature = "unstable", nightly),
253253
feature(
254-
diagnostic_namespace,
255254
lint_reasons,
256255
multiple_supertrait_upcastable,
257256
must_not_suspend,
@@ -426,7 +425,7 @@ let build = BuildBuilder::default().build_timestamp(true).build()?;"##
426425
must_not_suspend,
427426
non_exhaustive_omitted_patterns,
428427
unfulfilled_lint_expectations,
429-
unknown_or_malformed_diagnostic_attributes,
428+
// unknown_or_malformed_diagnostic_attributes,
430429
unnameable_types,
431430
)
432431
)]

vergen-gix/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ time = { version = "0.3.23", features = [
4848
"local-offset",
4949
"parsing",
5050
] }
51-
vergen = { version = "9.0.0-beta.2", path = "../vergen", default-features = false }
51+
vergen = { version = "9.0.0", path = "../vergen", default-features = false }
5252
vergen-lib = { version = "0.1.0", path = "../vergen-lib", features = ["git"] }
5353

5454
[build-dependencies]

vergen-gix/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,6 @@ let build = BuildBuilder::default().build_timestamp(true).build()?;"##
251251
#![cfg_attr(
252252
all(feature = "unstable", nightly),
253253
feature(
254-
diagnostic_namespace,
255254
lint_reasons,
256255
multiple_supertrait_upcastable,
257256
must_not_suspend,
@@ -426,7 +425,7 @@ let build = BuildBuilder::default().build_timestamp(true).build()?;"##
426425
must_not_suspend,
427426
non_exhaustive_omitted_patterns,
428427
unfulfilled_lint_expectations,
429-
unknown_or_malformed_diagnostic_attributes,
428+
// unknown_or_malformed_diagnostic_attributes,
430429
unnameable_types,
431430
)
432431
)]

vergen-lib/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#![cfg_attr(
1414
all(feature = "unstable", nightly),
1515
feature(
16-
diagnostic_namespace,
1716
lint_reasons,
1817
multiple_supertrait_upcastable,
1918
must_not_suspend,
@@ -188,7 +187,7 @@
188187
must_not_suspend,
189188
non_exhaustive_omitted_patterns,
190189
unfulfilled_lint_expectations,
191-
unknown_or_malformed_diagnostic_attributes,
190+
// unknown_or_malformed_diagnostic_attributes,
192191
unnameable_types,
193192
)
194193
)]

vergen-pretty/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ tracing = { version = "0.1.37", features = [
5353
[build-dependencies]
5454
anyhow = "1.0.70"
5555
rustversion = "1.0.12"
56-
vergen-gix = { version = "1.0.0-beta.2", features = [
56+
vergen-gix = { version = "1.0.0", path = "../vergen-gix", features = [
5757
"build",
5858
"cargo",
5959
"rustc",

vergen-pretty/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ assert!(!buf.is_empty());
103103
#![cfg_attr(
104104
all(feature = "unstable", nightly),
105105
feature(
106-
diagnostic_namespace,
107106
lint_reasons,
108107
multiple_supertrait_upcastable,
109108
must_not_suspend,
@@ -278,7 +277,7 @@ assert!(!buf.is_empty());
278277
must_not_suspend,
279278
non_exhaustive_omitted_patterns,
280279
unfulfilled_lint_expectations,
281-
unknown_or_malformed_diagnostic_attributes,
280+
// unknown_or_malformed_diagnostic_attributes,
282281
unnameable_types,
283282
)
284283
)]

vergen/src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,6 @@ let build = BuildBuilder::default().build_timestamp(true).build()?;"##
297297
#![cfg_attr(
298298
all(feature = "unstable", nightly),
299299
feature(
300-
diagnostic_namespace,
301300
lint_reasons,
302301
multiple_supertrait_upcastable,
303302
must_not_suspend,
@@ -472,7 +471,7 @@ let build = BuildBuilder::default().build_timestamp(true).build()?;"##
472471
must_not_suspend,
473472
non_exhaustive_omitted_patterns,
474473
unfulfilled_lint_expectations,
475-
unknown_or_malformed_diagnostic_attributes,
474+
// unknown_or_malformed_diagnostic_attributes,
476475
unnameable_types,
477476
)
478477
)]

0 commit comments

Comments
 (0)