Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
14
third-party/vendor/peeking_take_while/Cargo.toml
vendored
Normal file
14
third-party/vendor/peeking_take_while/Cargo.toml
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
[package]
|
||||
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
|
||||
description = "Like `Iterator::take_while`, but calls the predicate on a peeked value. This allows you to use `Iterator::by_ref` and `Iterator::take_while` together, and still get the first value for which the `take_while` predicate returned false after dropping the `by_ref`."
|
||||
categories = ["rust-patterns"]
|
||||
keywords = ["iterator", "take_while", "peek", "by_ref"]
|
||||
license = "Apache-2.0/MIT"
|
||||
name = "peeking_take_while"
|
||||
readme = "./README.md"
|
||||
repository = "https://github.com/fitzgen/peeking_take_while"
|
||||
version = "0.1.2"
|
||||
|
||||
[badges]
|
||||
[badges.travis-ci]
|
||||
repository = "fitzgen/peeking_take_while"
|
||||
Loading…
Add table
Add a link
Reference in a new issue