Resolve the std/hashbrown conflict situation
[anymap] / src / lib.rs
Chris MorganResolve the std/hashbrown conflict situation
Chris MorganRemove unneeded clippy allow
Chris MorganRename UncheckedAnyExt, fix Extend, tweak things
Chris MorganNarrow an unsafe block to the minimum
Chris MorganUnravel another obsolete macro
Chris MorganAdd Entry::{or_default, and_modify}
Chris MorganReplace the raw module with just hash_map
Chris MorganHashMap feature parity: impl Extend, notes on more
Chris Morganno_std support
Chris MorganChange std to core where possible
Chris MorganImplement From, not Into
Chris MorganMore documentation tweaks to clarify and explain
Chris MorganDrop anymap::Any in favour of std::any::Any
Chris MorganFlatten anymap::any out of existence
Chris MorganNo more bare trait objects: use `dyn Trait` syntax
Chris MorganImplement Default on Map
Chris MorganRemove the `bench` Cargo feature as superfluous
Chris MorganPut in a bunch of #[inline] attributes on fns.
Chris MorganReduce the work for rustc in the benchmarks.
Chris MorganAdd more benchmarking
Chris MorganRemove superfluous Clone bound on Entry methods.
Chris MorganRename "unstable" feature to "bench".
Chris MorganUngate efficient hashing (stable in Rust 1.7.0).
Chris Morgan0.11.2: just fixing warnings and such. 0.11.2
Chris Morgan0.11.1: Rust update for unstable. 0.11.1
Chris MorganMake tests work on beta/stable (benchmarks can’t work).
Chris MorganRename 'nightly' feature to 'unstable'.
Chris MorganImplement Debug for Map and RawMap.
Chris MorganReplace Cargo features with arcane DST magicks.
Chris MorganImplement stuff for concurrency.
Chris Morgan0.10.3: Rust beta support 0.10.3
Chris Morgan0.10.1: Rust update 0.10.1
Chris Morgan0.10.0: move Clone functionality into a feature. 0.10.0
Chris MorganUse std::convert for AnyMap -> RawAnyMap.
Chris MorganRust update.
Chris MorganSubstantial refactoring, exposing a raw interface.
Chris MorganRemove plenty of unnecessary 'statics.
Chris MorganSlight Rust update.
Chris MorganRemove unused stability markers.
Chris Morgan0.9.12: Rust update 0.9.12
Chris Morgan0.9.11: Rust update 0.9.11
Chris Morgan0.9.10: Rust update 0.9.10
Chris Morgan0.9.9: Rust update 0.9.9
Chris Morgan0.9.8: Rust update 0.9.8
Chris Morgan0.9.7: parity with the collections API 0.9.7
Chris Morgan0.9.6 0.9.6
Chris MorganMerge pull request #14 from drbawb/feature/namespaced...
Robert StrawDo not re-export the `Entry` enum ...
Robert StrawUse namespaced enum variants for the map-entry slots.
Chris MorganFix a slightly erroneous comment.
Chris MorganRust update.
Chris Morgantuple_indexing is no longer gated! Yay!
Chris MorganUpdate metadata, 0.9.2. 0.9.2
Chris MorganRust update.
Chris MorganImplement AnyMap.entry().
Chris MorganRust update.
Chris MorganMake trait bounds more explicit.
Chris MorganElide superfluous lifetimes.
Chris MorganRust update.
Chris MorganRemove obsolete managed_heap_memory lint warning.
Chris MorganReplace a deprecated method call.
Chris MorganAdd now-necessary lifetime bounds.
Chris MorganMerge pull request #9 from reem/contains
Jonathan ReemAdd contains method for checking if a type is already...
Chris MorganUpdate for upstream changes.
Chris MorganMerge pull request #6 from tivek/patch-1
tivekFix int type inference in range calls
Chris MorganMerge pull request #5 from reem/cargo
Jonathan ReemUpdated versions to 0.9.0.
Chris MorganMerge pull request #4 from tomassedovic/impl-mutable
Tomas SedovicImplement Collection and Mutable traits
Chris MorganMerge pull request #3 from reem/rust-version-bump
Jonathan ReemFix a syntax error with the latest rust
Chris MorganMerge pull request #1 from reem/deprecated-lint
Jonathan ReemRemove deprecated lint for ~[T]s
Jonathan ReemFixed new syntax error caused by upstream rust changes.
Chris MorganTry to drown a little bit of noise in benchmarks.
Chris MorganSkip type checking in from-Any casting.
Chris MorganSwitch from SipHash to a faster TypeId hasher.
Chris MorganAdd some simple benchmarks.
Chris MorganInitial release.