dynamic-pool
dynamic-pool copied to clipboard
a lock-free, thread-safe, dynamically-sized object pool.
Internally `DynamicPool` will box the callback, so there isn't a good reason to prevent something like `DynamicPool T>` from being specified.
This allows users of newer versions of crossbeam to avoid duplicate versions of dependencies, not much else. This update bumps minimum required Rust version to 1.36. There are some API...
Right now it is not possible to use standard container types like HashMap directly in a dynamic pool, and that is too bad because it would be very convenient. The...