forked from rust-itertools/itertools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (22 loc) · 724 Bytes
/
Cargo.toml
File metadata and controls
31 lines (22 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "itertools"
version = "0.4.8"
license = "MIT/Apache-2.0"
repository = "https://github.com/bluss/rust-itertools"
documentation = "http://bluss.github.io/rust-itertools/"
authors = ["bluss"]
description = "Extra iterator adaptors, iterator methods and macros."
keywords = ["iterator", "data-structure", "zip", "product", "group-by"]
[dependencies.quickcheck]
version = "0.2.21"
optional = true
[dev-dependencies.permutohedron]
version = "0.1"
[features]
# Unstable features, nightly channel
unstable = []
qc = ["quickcheck"]
[profile]
bench = { debug = true }
# uncomment to run tests with optimizations
# test = { opt-level = 3, debug = false, rpath = false, lto = false, debug-assertions = false }