Python priority queue implemented in Rust
Find a file
Michael Bradley 63515e2314
Simplify IndexedQueue API
Although similar to PureQueue, it doesn't make sense to use the exact
same signatures. Also don't make API users use Pair<D, P>.
2025-01-13 22:07:43 +13:00
src Simplify IndexedQueue API 2025-01-13 22:07:43 +13:00
tests Fix IndexedQueue creation test invalid arguments 2025-01-12 21:02:40 +13:00
.gitignore Initial setup 2025-01-03 01:41:49 +13:00
Cargo.lock Initial setup 2025-01-03 01:41:49 +13:00
Cargo.toml Get basic incomplete Python queue API working 2025-01-08 22:52:25 +13:00
pyority_queue.pyi Rename KeyedQueue to PairedQueue 2025-01-09 00:03:01 +13:00
pyproject.toml Initial setup 2025-01-03 01:41:49 +13:00
README.md Update documentation 2025-01-04 00:38:08 +13:00
requirements.txt Update desired Python API, add mostly failing PureQueue tests for TDD 2025-01-08 22:54:40 +13:00

pyority_queue

Implementations of priority queues in Python using Rust bindings for speed.