All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Rust's notion of Semantic Versioning. All versions prior to 1.0.0 are beta releases.
impl_no_dynamic_usage!()
helper macro to implementDynamicUsage
for simple types that don't allocate.
memuse::DynamicUsage
impls for the following types:()
str
[T: DynamicUsage]
Box<T: DynamicUsage>
Result<T: DynamicUsage, E: DynamicUsage>
memuse::DynamicUsage
impls for&str
and&[T]
(replaced by the impls onstr
and[T]
).memuse::NoDynamicUsage
trait (which was causing trait inference problems that prevented&T
andBox<T>
from working).
Initial release!