You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cargo nono check --package margo-fetch
margo-fetch: ❌
- Did not find a #![no_std] attribute or a simple conditional attribute like #[cfg_attr(not(feature = "std"), no_std)] in the crate source. Crate most likely doesn't support no_std without changes.
sha2: ✅
futures: ✅
serde: ❌
- Crate supports no_std if "std" feature is deactivated.
- Caused by feature flag "std" in crate "serde:1.0.84"
- Caused by feature flag "default" in crate "serde:1.0.84"
- Caused by implicitly enabled default feature from "margo-fetch:0.1.0"
serde_derive: ✅
log: ✅
hex: ❌
- Did not find a #![no_std] attribute or a simple conditional attribute like #[cfg_attr(not(feature = "std"), no_std)] in the crate source. Crate most likely doesn't support no_std without changes.
regex: ❌
- Did not find a #![no_std] attribute or a simple conditional attribute like #[cfg_attr(not(feature = "std"), no_std)] in the crate source. Crate most likely doesn't support no_std without changes.
For hex and regex, it shouldn't just print that it assumes that it's not supported, but also that those crates are only optional dependencies and are activated by a certain feature flag.
The text was updated successfully, but these errors were encountered:
Example (Running
cargo nono check
on https://github.com/hobofan/margo/tree/27974290ca4c957efaff52ae9641859a3158e848):For
hex
andregex
, it shouldn't just print that it assumes that it's not supported, but also that those crates are only optional dependencies and are activated by a certain feature flag.The text was updated successfully, but these errors were encountered: