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
We're aiming to build with stable Rust.
Currently, we're using these unstable features:
used_with_arg
impl_trait_in_assoc_type
task
type_alias_impl_trait
const_mut_refs
custom_test_frameworks
defmt-test
doc_auto_cfg
error_in_core
nightly-2024-09-19
fn_traits
inline_const
riot-rs-threads
lint_reasons
user facing means, those need to be enabled in application crates b/c they're used by macros or code we provide.
user facing
The text was updated successfully, but these errors were encountered:
The current experimental sensor abstraction also relies on trait_upcasting. We may be able to work around that.
trait_upcasting
Sorry, something went wrong.
No branches or pull requests
We're aiming to build with stable Rust.
Currently, we're using these unstable features:
used_with_arg
: this is used by linkme for its distributed slices. User facing!impl_trait_in_assoc_type
: required by Embassy. User facing for applications using thetask
macrotype_alias_impl_trait
=> embassy uses this or pre-allocate futures memory. User facing!const_mut_refs
: used by ringbuffercustom_test_frameworks
: will go when we have migrated todefmt-test
doc_auto_cfg
: used only when compiling documentationerror_in_core
: stabilized and removed in feat(build): bump toolchain tonightly-2024-09-19
#431fn_traits
inline_const
: stabilizedriot-rs-threads
lint_reasons
: stabilized and removed in chore(build): bump Rust toolchain #419user facing
means, those need to be enabled in application crates b/c they're used by macros or code we provide.The text was updated successfully, but these errors were encountered: