-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
35 lines (31 loc) · 1.14 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
[package]
authors = ["Dawid Ciężarkiewicz <[email protected]>"]
description = "Parallel iterator processing"
documentation = "https://docs.rs/pariter"
edition = "2018"
homepage = "https://github.com/dpc/pariter"
keywords = ["parallel", "iterator", "parallel_map"]
license = "MPL-2.0 OR MIT OR Apache-2.0"
name = "pariter"
readme = "README.md"
repository = "https://github.com/dpc/pariter"
version = "0.5.1"
[[bench]]
harness = false
name = "bench"
[dependencies]
crossbeam = { version = "0.8", default-features = false, features = ["std"] }
crossbeam-channel = "0.5.0"
num_cpus = "1.13"
[dev-dependencies]
criterion = "0.3"
quickcheck = "1"
quickcheck_macros = "1"
[package.metadata.release]
pre-release-replacements = [
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}", min=1},
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1},
{file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n## [Unreleased](https://github.com/dpc/pariter/compare/{{tag_name}}...HEAD) - ReleaseDate\n\n", exactly=1},
]
shared-version=true