-
Notifications
You must be signed in to change notification settings - Fork 670
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove deprecated items #1785
Remove deprecated items #1785
Conversation
Almost all the CI tests failed. error: failed to compile `cargo-hack v0.5.14`, intermediate artifacts can be found at `/tmp/cargo-installtsdEE2`
Caused by:
failed to parse manifest at `/usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.143/Cargo.toml`
Caused by:
feature `resolver` is required
this Cargo does not support nightly features, but if you
switch to nightly channel you can add
`cargo-features = ["resolver"]` to enable this feature
Exit status: 101 It seems to be related to the Rust toolchain |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Was this suggested by some automated tool?
CI will be broken until serde publishes a new crate.
Yep, by Intellij Rust
That's fine:) |
rebase please |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bors r+
What this pr does
assert!(x == y)
toassert_eq!(x, y)
assert!(x != y)
toassert_ne!(x, y)
.unwrap()
to unusedResult/Option
(in code comments)std::ixx::MAX
toixx::MAX
Box<Trait>
toBox<dyn Trait>