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 believe there's an error in this file please file an 9# issue against the rust-lang/cargo repository. If you're 10# editing this file be aware that the upstream Cargo.toml 11# will likely look very different (and much more reasonable) 12 13[package] 14edition = "2018" 15name = "itertools" 16version = "0.10.3" 17authors = ["bluss"] 18exclude = ["/bors.toml"] 19description = "Extra iterator adaptors, iterator methods, free functions, and macros." 20documentation = "https://docs.rs/itertools/" 21readme = "README.md" 22keywords = ["iterator", "data-structure", "zip", "product", "group-by"] 23categories = ["algorithms", "rust-patterns"] 24license = "MIT/Apache-2.0" 25repository = "https://github.com/rust-itertools/itertools" 26[package.metadata.release] 27no-dev-version = true 28[profile.bench] 29debug = true 30 31[lib] 32test = false 33bench = false 34 35[[bench]] 36name = "tuple_combinations" 37harness = false 38 39[[bench]] 40name = "tuples" 41harness = false 42 43[[bench]] 44name = "fold_specialization" 45harness = false 46 47[[bench]] 48name = "combinations_with_replacement" 49harness = false 50 51[[bench]] 52name = "tree_fold1" 53harness = false 54 55[[bench]] 56name = "bench1" 57harness = false 58 59[[bench]] 60name = "combinations" 61harness = false 62 63[[bench]] 64name = "powerset" 65harness = false 66[dependencies.either] 67version = "1.0" 68default-features = false 69[dev-dependencies.criterion] 70version = "=0" 71 72[dev-dependencies.paste] 73version = "1.0.0" 74 75[dev-dependencies.permutohedron] 76version = "0.2" 77 78[dev-dependencies.quickcheck] 79version = "0.9" 80default-features = false 81 82[dev-dependencies.rand] 83version = "0.7" 84 85[features] 86default = ["use_std"] 87use_alloc = [] 88use_std = ["use_alloc"] 89