Cargo.toml 593 B

12345678910111213141516171819
  1. [package]
  2. name = "peekable-fwd-bwd"
  3. description = "Iterator Peekable with multi-forward-peek and multi-backward-peek"
  4. version = "1.0.0"
  5. edition = "2021"
  6. rust-version = "1.75.0"
  7. authors = [ "Michael Büsch <m@bues.ch>" ]
  8. license = "MIT OR Apache-2.0"
  9. homepage = "https://bues.ch/"
  10. repository = "https://github.com/mbuesch/peekable-fwd-bwd"
  11. readme = "README.md"
  12. categories = [ "no-std", "data-structures", "rust-patterns", "algorithms" ]
  13. keywords = [ "iterator", "peek", "multipeek", "nth" ]
  14. [dependencies]
  15. arraydeque = { version = "0.5", default-features = false }
  16. # vim: ts=4 sw=4 expandtab