Releases: orium/archery
Releases · orium/archery
archery 1.2.1
- No longer depend on
static_assertions
.
archery 1.2.0
archery 1.1.0
- Added support for
triomphe::Arc
as a pointer kind. This gated behind thetriomphe
feature.
archery 1.0.0
- No changes. It’s just time to commit to a stable release :).
archery 0.5.0
- Fix
Send
/Sync
unsoundness inSharedPointer
. See issue #18. - Added
SharedPointer::pin()
. - Added
SharedPointer::as_ptr()
. - Updated dependencies.
- Updated to 2021 edition.
archery 0.4.0
- Added support for
no_std
.
archery 0.2.1
- Minor fix in README.
archery 0.2.0
- Added some functionality to
SharedPointer
that you would expect fromRc
/Arc
.- Functions:
SharedPointer::try_unwrap()
.SharedPointer::get_mut()
.SharedPointer::strong_count()
.SharedPointer::ptr_eq()
.
- Traits:
Default
.From<T>
.From<Box<T>>
.std::fmt::Pointer
.
- Functions:
archery 0.1.0
- Initial release with
SharedPointer
,SharedPointerKind
,SharedPointerKindRc
, andSharedPointerKindArc
.- Functionality exposed from the underlying pointers:
deref()
,make_mut()
,clone()
.
- Functionality exposed from the underlying pointers: