The crate enables the alloc feature via #![cfg_attr(feature = "alloc", feature(alloc))] and can therefore not be compiled via stable toolchain.
As the feature was stabilized ~1 year ago would it be possible to remove this line or is there another way to extend cfg_attr to check the compiler version in use?
The crate enables the
alloc
feature via#![cfg_attr(feature = "alloc", feature(alloc))]
and can therefore not be compiled via stable toolchain.As the feature was stabilized ~1 year ago would it be possible to remove this line or is there another way to extend
cfg_attr
to check the compiler version in use?