Skip to content

Commit

Permalink
Upgrade itertools crate from 0.12 to 0.13 version (#356)
Browse files Browse the repository at this point in the history
Additionally:
- fix codegen failure tests

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kai Ren <tyranron@gmail.com>
  • Loading branch information
dependabot[bot] and tyranron committed May 17, 2024
1 parent e0d1698 commit c70cc34
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 45 deletions.
2 changes: 1 addition & 1 deletion impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ rustc_version = { version = "0.4", optional = true }

[dev-dependencies]
derive_more = { path = "..", features = ["full"] }
itertools = "0.12.0"
itertools = "0.13.0"

[badges]
github = { repository = "JelteF/derive_more", workflow = "CI" }
Expand Down
11 changes: 0 additions & 11 deletions tests/compile_fail/as_mut/unknown_field_attr_arg.stderr
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
error[E0412]: cannot find type `baz` in this scope
--> tests/compile_fail/as_mut/unknown_field_attr_arg.rs:3:14
|
3 | #[as_mut(baz)]
| ^^^ not found in this scope
|
help: you might be missing a type parameter
|
1 | #[derive(derive_more::AsMut<baz>)]
| +++++

error[E0412]: cannot find type `baz` in this scope
--> tests/compile_fail/as_mut/unknown_field_attr_arg.rs:3:14
|
Expand Down
11 changes: 0 additions & 11 deletions tests/compile_fail/as_mut/unknown_struct_attr_arg.stderr
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
error[E0412]: cannot find type `baz` in this scope
--> tests/compile_fail/as_mut/unknown_struct_attr_arg.rs:2:10
|
2 | #[as_mut(baz)]
| ^^^ not found in this scope
|
help: you might be missing a type parameter
|
1 | #[derive(derive_more::AsMut<baz>)]
| +++++

error[E0412]: cannot find type `baz` in this scope
--> tests/compile_fail/as_mut/unknown_struct_attr_arg.rs:2:10
|
Expand Down
11 changes: 0 additions & 11 deletions tests/compile_fail/as_ref/unknown_field_attr_arg.stderr
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
error[E0412]: cannot find type `baz` in this scope
--> tests/compile_fail/as_ref/unknown_field_attr_arg.rs:3:14
|
3 | #[as_ref(baz)]
| ^^^ not found in this scope
|
help: you might be missing a type parameter
|
1 | #[derive(derive_more::AsRef<baz>)]
| +++++

error[E0412]: cannot find type `baz` in this scope
--> tests/compile_fail/as_ref/unknown_field_attr_arg.rs:3:14
|
Expand Down
11 changes: 0 additions & 11 deletions tests/compile_fail/as_ref/unknown_struct_attr_arg.stderr
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
error[E0412]: cannot find type `baz` in this scope
--> tests/compile_fail/as_ref/unknown_struct_attr_arg.rs:2:10
|
2 | #[as_ref(baz)]
| ^^^ not found in this scope
|
help: you might be missing a type parameter
|
1 | #[derive(derive_more::AsRef<baz>)]
| +++++

error[E0412]: cannot find type `baz` in this scope
--> tests/compile_fail/as_ref/unknown_struct_attr_arg.rs:2:10
|
Expand Down

0 comments on commit c70cc34

Please sign in to comment.