-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
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
Nightly feature usage #25
Comments
|
Since #57 we depend on two more nightly features:
|
#101 enables compatibility with stable Rust 🎉 This issue should remain open to track usage of nightly features. |
|
Updated: we now use |
Updated:
|
Data models could be simplified with return position impl trait in traits. Edit: type RowKeyIter<'b> = impl Iterator<Item = u8>; |
KAS currently
requiresmay use unstable language features when using nightly Rust.Features enabled by the
nightly
feature flag (optional but recommended):proc_macro_diagnostic
— used inkas-macros
for better diagnosticsmin_specialization
— used by theLabel
widget to select appropriate draw routineTryFormat
utility to useDebug
impl where available on generic typedoc_cfg
— enables annotation of feature flags in documentationThis feature is now stable!generic_associated_types
— used in several places where associated types require a lifetime parameter, and desired to use in several more places.unsafe
and boxing/cloning used as workarounds.Features not used but desired:
The text was updated successfully, but these errors were encountered: