- net2-0.2.22 (before) (after)
- collenchyma-0.0.8 (before) (after)
- com-rs-0.1.4 (before) (after)
- mach-0.0.4 (before) (after)
- ruplicity-0.2.2 (before) (after)
- unicode_names-0.1.7 (before) (after)
- mioqu-0.1.0 (before) (after)
- openal-0.2.1 (before) (after)
- tiled-0.1.4 (before) (after)
So I looked at these.
- net2-0.2.22
- extern crate
libc
is private, and cannot be reexported (error E0364), consider declaring withpub
, #[deny(private_in_public)] on by default
- extern crate
- collenchyma
missing_copy_implementation etc
- seems like various lints were improved, and they have
#[deny]
set to those lints
- com-rs
- type does not impl
fmt::Debug
- type does not impl
- ruplicity
- type could not implement
Copy
?
- type could not implement
- mach / unicode_names
-
#[inline(never)]
applied to static -
#[repr(C)]
applied not to struct or enum - both of these look like we fixed some bug somewhere, not sure what
-
- mioqu-0.1.0
- private type in public interface
- did this used to be a warning and we moved it to error?
- openal-0.2.1
- “no matching package named
openal-sys
found (required byopenal
)”
- “no matching package named
- tiled-0.1.4
- type named Error already imported
- maybe https://github.com/rust-lang/rust/issues/30989 ?
Thanks @nikomatsakis!
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.