1
1
version bump: 1.0.0 -> (breaking) -> 2.0.0
2
- error: breaking changes in `<std::vec::Vec<T, std::alloc::Global > as old::Abc>`
2
+ error: breaking changes in `<std::vec::Vec<T> as old::Abc>`
3
3
--> trait_impls/old.rs:9:1
4
4
|
5
5
9 | impl<T> Abc for Vec<T> { }
@@ -19,15 +19,15 @@ error: breaking changes in `<old::Def as std::clone::Clone>`
19
19
|
20
20
= warning: trait impl specialized or removed (breaking)
21
21
22
- warning: technically breaking changes in `<std::boxed::Box<T, std::alloc::Global > as new::Abc>`
22
+ warning: technically breaking changes in `<std::boxed::Box<T> as new::Abc>`
23
23
--> trait_impls/new.rs:11:1
24
24
|
25
25
11 | impl<T: Clone> Abc for Box<T> { }
26
26
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
27
27
|
28
28
= note: trait impl generalized or newly added (technically breaking)
29
29
30
- warning: technically breaking changes in `<std::boxed::Box<new::Def, std::alloc::Global > as new::Abc>`
30
+ warning: technically breaking changes in `<std::boxed::Box<new::Def> as new::Abc>`
31
31
--> trait_impls/new.rs:13:1
32
32
|
33
33
13 | impl Abc for Box<Def> { }
@@ -51,5 +51,4 @@ warning: technically breaking changes in `<std::cell::Cell<(bool, T)> as new::Ab
51
51
|
52
52
= note: trait impl generalized or newly added (technically breaking)
53
53
54
- error: aborting due to 2 previous errors; 4 warnings emitted
55
-
54
+ error: aborting due to 2 previous errors; 4 warnings emitted
0 commit comments