# 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 are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "simd-itertools" version = "0.2.3" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "SIMD-accelerated alternatives for common operations like contains, max, find etc." readme = "README.md" keywords = [ "simd", "iterator", ] categories = [ "algorithms", "concurrency", ] license = "MIT OR Apache-2.0" repository = "https://github.com/LaihoE/SIMD-itertools" [profile.bench] opt-level = 3 lto = true codegen-units = 1 debug = 0 debug-assertions = false rpath = false [profile.release] lto = true debug = 2 [lib] name = "simd_itertools" path = "src/lib.rs" [[bench]] name = "all_equal" path = "benches/all_equal.rs" [[bench]] name = "contains" path = "benches/contains.rs" [[bench]] name = "eq" path = "benches/eq.rs" [[bench]] name = "filter" path = "benches/filter.rs" [[bench]] name = "find" path = "benches/find.rs" [[bench]] name = "is_sorted" path = "benches/is_sorted.rs" [[bench]] name = "max" path = "benches/max.rs" [[bench]] name = "min" path = "benches/min.rs" [[bench]] name = "position" path = "benches/position.rs" harness = false [dependencies.itertools] version = "0.13.0" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.rand] version = "0.8.5"