1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14rust-version = "1.43.1" 15name = "itertools" 16version = "0.13.0" 17authors = ["bluss"] 18description = "Extra iterator adaptors, iterator methods, free functions, and macros." 19documentation = "https://docs.rs/itertools/" 20readme = "README.md" 21keywords = [ 22 "iterator", 23 "data-structure", 24 "zip", 25 "product", 26] 27categories = [ 28 "algorithms", 29 "rust-patterns", 30 "no-std", 31 "no-std::no-alloc", 32] 33license = "MIT OR Apache-2.0" 34repository = "https://github.com/rust-itertools/itertools" 35 36[profile.bench] 37debug = 2 38 39[lib] 40test = false 41bench = false 42 43[[bench]] 44name = "tuple_combinations" 45harness = false 46 47[[bench]] 48name = "tuples" 49harness = false 50 51[[bench]] 52name = "fold_specialization" 53harness = false 54 55[[bench]] 56name = "combinations_with_replacement" 57harness = false 58 59[[bench]] 60name = "tree_reduce" 61harness = false 62 63[[bench]] 64name = "bench1" 65harness = false 66 67[[bench]] 68name = "combinations" 69harness = false 70 71[[bench]] 72name = "powerset" 73harness = false 74 75[[bench]] 76name = "specializations" 77harness = false 78 79[dependencies.either] 80version = "1.0" 81default-features = false 82 83[dev-dependencies.criterion] 84version = "0.4.0" 85 86[dev-dependencies.paste] 87version = "1.0.0" 88 89[dev-dependencies.permutohedron] 90version = "0.2" 91 92[dev-dependencies.quickcheck] 93version = "0.9" 94default_features = false 95 96[dev-dependencies.rand] 97version = "0.7" 98 99[features] 100default = ["use_std"] 101use_alloc = [] 102use_std = [ 103 "use_alloc", 104 "either/use_std", 105] 106