]> git.proxmox.com Git - cargo.git/blob - vendor/itertools/Cargo.toml
New upstream version 0.63.1
[cargo.git] / vendor / itertools / Cargo.toml
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]
14 edition = "2018"
15 name = "itertools"
16 version = "0.10.5"
17 authors = ["bluss"]
18 exclude = ["/bors.toml"]
19 description = "Extra iterator adaptors, iterator methods, free functions, and macros."
20 documentation = "https://docs.rs/itertools/"
21 readme = "README.md"
22 keywords = ["iterator", "data-structure", "zip", "product", "group-by"]
23 categories = ["algorithms", "rust-patterns"]
24 license = "MIT/Apache-2.0"
25 repository = "https://github.com/rust-itertools/itertools"
26 [package.metadata.release]
27 no-dev-version = true
28 [profile.bench]
29 debug = true
30
31 [lib]
32 test = false
33 bench = false
34
35 [[bench]]
36 name = "tuple_combinations"
37 harness = false
38
39 [[bench]]
40 name = "tuples"
41 harness = false
42
43 [[bench]]
44 name = "fold_specialization"
45 harness = false
46
47 [[bench]]
48 name = "combinations_with_replacement"
49 harness = false
50
51 [[bench]]
52 name = "tree_fold1"
53 harness = false
54
55 [[bench]]
56 name = "bench1"
57 harness = false
58
59 [[bench]]
60 name = "combinations"
61 harness = false
62
63 [[bench]]
64 name = "powerset"
65 harness = false
66 [dependencies.either]
67 version = "1.0"
68 default-features = false
69 [dev-dependencies.criterion]
70 version = "=0"
71
72 [dev-dependencies.paste]
73 version = "1.0.0"
74
75 [dev-dependencies.permutohedron]
76 version = "0.2"
77
78 [dev-dependencies.quickcheck]
79 version = "0.9"
80 default-features = false
81
82 [dev-dependencies.rand]
83 version = "0.7"
84
85 [features]
86 default = ["use_std"]
87 use_alloc = []
88 use_std = ["use_alloc", "either/use_std"]