diff options
Diffstat (limited to '')
-rw-r--r-- | third_party/rust/itertools-0.8.0/Cargo.toml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/third_party/rust/itertools-0.8.0/Cargo.toml b/third_party/rust/itertools-0.8.0/Cargo.toml new file mode 100644 index 0000000000..9141434fe4 --- /dev/null +++ b/third_party/rust/itertools-0.8.0/Cargo.toml @@ -0,0 +1,47 @@ +# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO +# +# When uploading crates to the registry Cargo will automatically +# "normalize" Cargo.toml files for maximal compatibility +# with all versions of Cargo and also rewrite `path` dependencies +# to registry (e.g. crates.io) dependencies +# +# If you believe there's an error in this file please file an +# issue against the rust-lang/cargo repository. If you're +# editing this file be aware that the upstream Cargo.toml +# will likely look very different (and much more reasonable) + +[package] +name = "itertools" +version = "0.8.0" +authors = ["bluss"] +exclude = ["/bors.toml"] +description = "Extra iterator adaptors, iterator methods, free functions, and macros." +documentation = "https://docs.rs/itertools/" +keywords = ["iterator", "data-structure", "zip", "product", "group-by"] +categories = ["algorithms", "rust-patterns"] +license = "MIT/Apache-2.0" +repository = "https://github.com/bluss/rust-itertools" +[package.metadata.release] +no-dev-version = true +[profile.bench] +debug = true + +[lib] +test = false +bench = false +[dependencies.either] +version = "1.0" +default-features = false +[dev-dependencies.permutohedron] +version = "0.2" + +[dev-dependencies.quickcheck] +version = "0.7" +default-features = false + +[dev-dependencies.rand] +version = "0.6" + +[features] +default = ["use_std"] +use_std = [] |