-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
51 lines (43 loc) · 1.21 KB
/
Cargo.toml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "iterator_ilp"
#
# Release checklist:
#
# - Cross-check all public API documentation, update as needed
# - Update changelog
# - Update version number in Cargo.toml
# - Push master, make sure it passes CI
# - Cargo publish
# - Roll an annotated git tag
# - Add a github release
#
version = "3.0.0"
authors = ["Hadrien G. <[email protected]>"]
edition = "2021"
rust-version = "1.75.0"
description = "Iterator extensions for instruction-parallel reductions"
repository = "https://github.com/HadrienG2/iterator_ilp"
license = "MPL-2.0"
keywords = ["iterator", "ilp", "instruction-parallel", "simd", "unroll"]
categories = ["algorithms", "concurrency", "mathematics", "no-std::no-alloc", "rust-patterns"]
[features]
default = ["std"]
std = []
[dependencies]
num-traits = "0.2"
[dev-dependencies]
criterion = { version = "0.5", default-features = false }
hwlocality = "1.0.0-alpha.6"
multiversion = "0.8"
proptest = { version = "1.6", default-features = false, features = ["handle-panics", "std"] }
rand = "0.8"
static_assertions = "1.1.0"
[[bench]]
name = "benchmark"
harness = false
[profile.bench]
codegen-units = 1
[profile.test.package.proptest]
opt-level = 3
[profile.test.package.rand_chacha]
opt-level = 3