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
When I try to build with the debug feature, the build fails with the following errors:
$ cargo build --features debug Compiling cargo-outdated v0.5.1 (file:///C:/Users/kraaimx/src/cargo-outdated) error[E0433]: failed to resolve. Maybe a missing `extern crate term;`? --> src\macros.rs:17:50 | 17 | $config.shell().say(format!($($arg)*), ::term::color::WHITE)? | ^^^^ Maybe a missing `extern crate term;`? | ::: src\cargo_ops\elaborate_workspace.rs | 152 | / debug!( 153 | | config, 154 | | "UPDATE, self: {:?}, key: {:?}, status: {:?}\n", 155 | | self_pkg.package_id(), 156 | | pkg_status_key, 157 | | pkg_status 158 | | ); | |__________- in this macro invocation error[E0433]: failed to resolve. Maybe a missing `extern crate term;`? --> src\macros.rs:17:50 | 17 | $config.shell().say(format!($($arg)*), ::term::color::WHITE)? | ^^^^ Maybe a missing `extern crate term;`? | ::: src\cargo_ops\elaborate_workspace.rs | 165 | / debug!( 166 | | config, 167 | | "LOOP, parent: {:?}, self: {:?}, compat: {:?}, latest: {:?}\n", 168 | | parent, ... | 171 | | latest_pkg 172 | | ); | |__________- in this macro invocation error[E0433]: failed to resolve. Maybe a missing `extern crate term;`? --> src\macros.rs:17:50 | 17 | $config.shell().say(format!($($arg)*), ::term::color::WHITE)? | ^^^^ Maybe a missing `extern crate term;`? | ::: src\cargo_ops\elaborate_workspace.rs | 202 | / debug!( 203 | | config, 204 | | "NEXT, next_self: {:?}, next_compat: {:?}, next_latest: {:?}\n", 205 | | next_self, 206 | | next_compat, 207 | | next_latest 208 | | ); | |______________- in this macro invocation error[E0433]: failed to resolve. Maybe a missing `extern crate term;`? --> src\macros.rs:14:41 | 14 | $config.shell().say($message, ::term::color::WHITE)? | ^^^^ Maybe a missing `extern crate term;`? | ::: src\main.rs | 241 | debug!(config, format!("options: {:?}", options)); | -------------------------------------------------- in this macro invocation error[E0599]: no method named `say` found for type `std::cell::RefMut<'_, cargo::core::Shell>` in the current scope --> src\macros.rs:14:25 | 14 | $config.shell().say($message, ::term::color::WHITE)? | ^^^ | ::: src\main.rs | 241 | debug!(config, format!("options: {:?}", options)); | -------------------------------------------------- in this macro invocation error[E0599]: no method named `say` found for type `std::cell::RefMut<'_, cargo::core::Shell>` in the current scope --> src\macros.rs:17:25 | 17 | $config.shell().say(format!($($arg)*), ::term::color::WHITE)? | ^^^ | ::: src\cargo_ops\elaborate_workspace.rs | 152 | / debug!( 153 | | config, 154 | | "UPDATE, self: {:?}, key: {:?}, status: {:?}\n", 155 | | self_pkg.package_id(), 156 | | pkg_status_key, 157 | | pkg_status 158 | | ); | |__________- in this macro invocation error[E0599]: no method named `say` found for type `std::cell::RefMut<'_, cargo::core::Shell>` in the current scope --> src\macros.rs:17:25 | 17 | $config.shell().say(format!($($arg)*), ::term::color::WHITE)? | ^^^ | ::: src\cargo_ops\elaborate_workspace.rs | 165 | / debug!( 166 | | config, 167 | | "LOOP, parent: {:?}, self: {:?}, compat: {:?}, latest: {:?}\n", 168 | | parent, ... | 171 | | latest_pkg 172 | | ); | |__________- in this macro invocation error[E0599]: no method named `say` found for type `std::cell::RefMut<'_, cargo::core::Shell>` in the current scope --> src\macros.rs:17:25 | 17 | $config.shell().say(format!($($arg)*), ::term::color::WHITE)? | ^^^ | ::: src\cargo_ops\elaborate_workspace.rs | 202 | / debug!( 203 | | config, 204 | | "NEXT, next_self: {:?}, next_compat: {:?}, next_latest: {:?}\n", 205 | | next_self, 206 | | next_compat, 207 | | next_latest 208 | | ); | |______________- in this macro invocation error: aborting due to 8 previous errors error: Could not compile `cargo-outdated`. To learn more, run the command again with --verbose.
The text was updated successfully, but these errors were encountered:
termcolor
Thanks for reporting the bug! I have created the PR #78 to fix it and added debug build as part of CI.
Sorry, something went wrong.
No branches or pull requests
When I try to build with the debug feature, the build fails with the following errors:
The text was updated successfully, but these errors were encountered: