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
autocfg is working towards some form of nightly feature probing. This needs to be available to make the above features usable, since some of them require nightly, but we don't want to restrict the crate to nightly.
Set up documentation using doc_item to make it more clear what the requirements are for certain parts of the crate.
rustdoc issue with foreign implementations not being shown in documentation needs to be resolved (see All Index implementations are not visible in documentation. #2). This only needs to be available in nightly, since that is what docs.rs uses. We need this to be fixed before release, or else half of the documentation will be missing. There is a PR to fix it, but it seems to be blocked currently.
The text was updated successfully, but these errors were encountered:
This is the checklist of things that need to happen before the
0.2.0
release.Iterator
.DoubleEndedIterator
.FusedIterator
.ExactSizeIterator
. These must be dependent on the target's pointer width.TrustedLen
.Index
for[T]
,Vec<T>
,&str
, andString
. Also implementIndex
forCStr
usingRangeFromExclusive
.Serialize
andDeserialize
fromserde
.autocfg
is working towards some form ofnightly
feature probing. This needs to be available to make the above features usable, since some of them requirenightly
, but we don't want to restrict the crate to nightly.doc_item
to make it more clear what the requirements are for certain parts of the crate.rustdoc
issue with foreign implementations not being shown in documentation needs to be resolved (see AllIndex
implementations are not visible in documentation. #2). This only needs to be available innightly
, since that is what docs.rs uses. We need this to be fixed before release, or else half of the documentation will be missing. There is a PR to fix it, but it seems to be blocked currently.The text was updated successfully, but these errors were encountered: