-
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into trait_const_generic_lints
- Loading branch information
Showing
12 changed files
with
183 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
SemverQuery( | ||
id: "type_allows_fewer_const_generic_params", | ||
human_readable_name: "type now allows fewer const generic parameters", | ||
description: "A type now allows fewer const generic parameters than before.", | ||
required_update: Major, | ||
lint_level: Deny, | ||
reference_link: Some("https://doc.rust-lang.org/reference/items/generics.html#const-generics"), | ||
query: r#" | ||
{ | ||
CrateDiff { | ||
baseline { | ||
item { | ||
... on ImplOwner { | ||
visibility_limit @filter(op: "=", value: ["$public"]) | ||
name @output | ||
owner_type: __typename @tag @output | ||
importable_path { | ||
path @tag @output | ||
public_api @filter(op: "=", value: ["$true"]) | ||
} | ||
generic_parameter @fold | ||
@transform(op: "count") | ||
@tag(name: "old_allowed_const_count") | ||
@output(name: "old_allowed_const_count") { | ||
... on GenericConstParameter { | ||
old_allowed_consts: name @output | ||
} | ||
} | ||
} | ||
} | ||
} | ||
current { | ||
item { | ||
... on ImplOwner { | ||
visibility_limit @filter(op: "=", value: ["$public"]) @output | ||
__typename @filter(op: "=", value: ["%owner_type"]) | ||
importable_path { | ||
path @filter(op: "=", value: ["%path"]) | ||
public_api @filter(op: "=", value: ["$true"]) | ||
} | ||
generic_parameter @fold | ||
@transform(op: "count") | ||
@filter(op: "<", value: ["%old_allowed_const_count"]) | ||
@output(name: "new_allowed_const_count") { | ||
... on GenericConstParameter { | ||
new_allowed_consts: name @output | ||
} | ||
} | ||
span_: span @optional { | ||
filename @output | ||
begin_line @output | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}"#, | ||
arguments: { | ||
"public": "public", | ||
"true": true, | ||
}, | ||
error_message: "A type now allows fewer const generic parameters than it used to. Uses of this type that supplied all previously-supported const generics will be broken.", | ||
per_result_error_template: Some("{{owner_type}} {{name}} allows {{old_allowed_const_count}} -> {{new_allowed_const_count}} const generics in {{span_filename}}:{{span_begin_line}}"), | ||
// TODO: see https://github.com/obi1kenobi/cargo-semver-checks/blob/main/CONTRIBUTING.md#adding-a-witness | ||
// for information about this field. | ||
// | ||
// The witness would be a type ascription with the old number | ||
// of allowed const generics (including ones that provided default values), | ||
// which will be too many generics for the new definition. | ||
witness: None, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...quires_more_generic_consts/new/Cargo.toml → ...fewer_const_generic_params/new/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
test_crates/type_allows_fewer_const_generic_params/new/src/lib.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
pub struct Example<const N: usize> { | ||
data: [i64; N], | ||
} | ||
|
||
pub enum NotGenericAnymore { | ||
First([i64; 16]), | ||
} | ||
|
||
pub union NotGenericEither<T> { | ||
left: std::mem::ManuallyDrop<[T; 4]>, | ||
} |
2 changes: 1 addition & 1 deletion
2
...quires_more_generic_consts/old/Cargo.toml → ...fewer_const_generic_params/old/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
test_crates/type_allows_fewer_const_generic_params/old/src/lib.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
pub struct Example<const N: usize, const M: usize = 8> { | ||
data: [i64; N], | ||
data2: [i64; M], | ||
} | ||
|
||
pub enum NotGenericAnymore<const N: usize> { | ||
First([i64; N]), | ||
} | ||
|
||
pub union NotGenericEither<T, const N: usize> { | ||
left: std::mem::ManuallyDrop<[T; N]>, | ||
} |
7 changes: 7 additions & 0 deletions
7
test_crates/type_requires_more_const_generic_params/new/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[package] | ||
publish = false | ||
name = "type_requires_more_const_generic_params" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] |
File renamed without changes.
7 changes: 7 additions & 0 deletions
7
test_crates/type_requires_more_const_generic_params/old/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[package] | ||
publish = false | ||
name = "type_requires_more_const_generic_params" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] |
File renamed without changes.
63 changes: 63 additions & 0 deletions
63
test_outputs/query_execution/type_allows_fewer_const_generic_params.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
--- | ||
source: src/query.rs | ||
expression: "&query_execution_results" | ||
snapshot_kind: text | ||
--- | ||
{ | ||
"./test_crates/type_allows_fewer_const_generic_params/": [ | ||
{ | ||
"name": String("Example"), | ||
"new_allowed_const_count": Uint64(1), | ||
"new_allowed_consts": List([ | ||
String("N"), | ||
]), | ||
"old_allowed_const_count": Uint64(2), | ||
"old_allowed_consts": List([ | ||
String("N"), | ||
String("M"), | ||
]), | ||
"owner_type": String("Struct"), | ||
"path": List([ | ||
String("type_allows_fewer_const_generic_params"), | ||
String("Example"), | ||
]), | ||
"span_begin_line": Uint64(1), | ||
"span_filename": String("src/lib.rs"), | ||
"visibility_limit": String("public"), | ||
}, | ||
{ | ||
"name": String("NotGenericAnymore"), | ||
"new_allowed_const_count": Uint64(0), | ||
"new_allowed_consts": List([]), | ||
"old_allowed_const_count": Uint64(1), | ||
"old_allowed_consts": List([ | ||
String("N"), | ||
]), | ||
"owner_type": String("Enum"), | ||
"path": List([ | ||
String("type_allows_fewer_const_generic_params"), | ||
String("NotGenericAnymore"), | ||
]), | ||
"span_begin_line": Uint64(5), | ||
"span_filename": String("src/lib.rs"), | ||
"visibility_limit": String("public"), | ||
}, | ||
{ | ||
"name": String("NotGenericEither"), | ||
"new_allowed_const_count": Uint64(0), | ||
"new_allowed_consts": List([]), | ||
"old_allowed_const_count": Uint64(1), | ||
"old_allowed_consts": List([ | ||
String("N"), | ||
]), | ||
"owner_type": String("Union"), | ||
"path": List([ | ||
String("type_allows_fewer_const_generic_params"), | ||
String("NotGenericEither"), | ||
]), | ||
"span_begin_line": Uint64(9), | ||
"span_filename": String("src/lib.rs"), | ||
"visibility_limit": String("public"), | ||
}, | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters