We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As of rustc 1.21.0-nightly (e26688824 2017-08-27), cargo test gives the following warnings.
cargo test
Compiling serde_json v1.0.2 warning: unused extern crate --> src/lib.rs:323:1 | 323 | extern crate core; | ^^^^^^^^^^^^^^^^^^ | = note: #[warn(unused_extern_crates)] on by default warning: unused extern crate --> tests/stream.rs:11:1 | 11 | extern crate serde; | ^^^^^^^^^^^^^^^^^^^ | = note: #[warn(unused_extern_crates)] on by default
The text was updated successfully, but these errors were encountered:
The extern crate core is no longer present, and the extern crate serde was fixed by rust-lang/rust#44825.
extern crate core
extern crate serde
Sorry, something went wrong.
No branches or pull requests
As of rustc 1.21.0-nightly (e26688824 2017-08-27),
cargo test
gives the following warnings.The text was updated successfully, but these errors were encountered: