| 1 | [package] |
| 2 | name = "itertools" |
| 3 | version = "0.12.1" |
| 4 | |
| 5 | license = "MIT OR Apache-2.0" |
| 6 | repository = "https://github.com/rust-itertools/itertools" |
| 7 | documentation = "https://docs.rs/itertools/" |
| 8 | authors = ["bluss" ] |
| 9 | readme = "README.md" |
| 10 | |
| 11 | description = "Extra iterator adaptors, iterator methods, free functions, and macros." |
| 12 | |
| 13 | keywords = ["iterator" , "data-structure" , "zip" , "product" , "group-by" ] |
| 14 | categories = ["algorithms" , "rust-patterns" ] |
| 15 | |
| 16 | edition = "2018" |
| 17 | |
| 18 | # When bumping, please resolve all `#[allow(clippy::*)]` that are newly resolvable. |
| 19 | rust-version = "1.43.1" |
| 20 | |
| 21 | [lib] |
| 22 | bench = false |
| 23 | test = false |
| 24 | |
| 25 | [dependencies] |
| 26 | either = { version = "1.0" , default-features = false } |
| 27 | |
| 28 | [dev-dependencies] |
| 29 | rand = "0.7" |
| 30 | criterion = "0.4.0" |
| 31 | paste = "1.0.0" # Used in test_std to instantiate generic tests |
| 32 | permutohedron = "0.2" |
| 33 | quickcheck = { version = "0.9" , default_features = false } |
| 34 | |
| 35 | [features] |
| 36 | default = ["use_std" ] |
| 37 | use_std = ["use_alloc" , "either/use_std" ] |
| 38 | use_alloc = [] |
| 39 | |
| 40 | [profile] |
| 41 | bench = { debug = true } |
| 42 | |
| 43 | [[bench]] |
| 44 | name = "tuple_combinations" |
| 45 | harness = false |
| 46 | |
| 47 | [[bench]] |
| 48 | name = "tuples" |
| 49 | harness = false |
| 50 | |
| 51 | [[bench]] |
| 52 | name = "fold_specialization" |
| 53 | harness = false |
| 54 | |
| 55 | [[bench]] |
| 56 | name = "combinations_with_replacement" |
| 57 | harness = false |
| 58 | |
| 59 | [[bench]] |
| 60 | name = "tree_fold1" |
| 61 | harness = false |
| 62 | |
| 63 | [[bench]] |
| 64 | name = "bench1" |
| 65 | harness = false |
| 66 | |
| 67 | [[bench]] |
| 68 | name = "combinations" |
| 69 | harness = false |
| 70 | |
| 71 | [[bench]] |
| 72 | name = "powerset" |
| 73 | harness = false |
| 74 | |
| 75 | [[bench]] |
| 76 | name = "specializations" |
| 77 | harness = false |
| 78 | |