-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 919 Bytes
/
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
[package]
name = "orx-parallel"
version = "1.12.0"
edition = "2021"
authors = ["orxfun <orx.ugur.arikan@gmail.com>"]
description = "A performant and configurable parallel computing library for computations defined as compositions of iterator methods."
license = "MIT"
repository = "https://github.com/orxfun/orx-parallel/"
keywords = ["parallel", "concurrency", "performance", "thread", "iterator"]
categories = ["concurrency", "algorithms"]
[dependencies]
orx-pseudo-default = { version = "1.4", default-features = false }
orx-pinned-vec = "3.10"
orx-fixed-vec = "3.10"
orx-split-vec = "3.10"
orx-pinned-concurrent-col = "2.8"
orx-concurrent-bag = "2.7"
orx-concurrent-ordered-bag = "2.7"
orx-priority-queue = "1.4"
orx-concurrent-iter = "1.28"
[dev-dependencies]
chrono = "0.4.38"
criterion = "0.5.1"
rand = "0.8"
rand_chacha = "0.3"
rayon = "1.10.0"
test-case = "3.3.1"
[[bench]]
name = "flatmap"
harness = false