-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 853 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 853 Bytes
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
[package]
name = "makeparallel"
version = "0.2.0"
edition = "2021"
authors = ["Amiya Mandal <amiya19mandal@gmail.com>"]
description = "True parallelism for Python - Bypass the GIL with Rust-powered decorators"
repository = "https://github.com/amiyamandal-dev/makeParallel"
license = "MIT"
keywords = ["python", "parallel", "gil", "concurrency", "rust"]
categories = ["api-bindings", "concurrency"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "makeparallel"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.27.1", features = ["extension-module"] }
crossbeam = "0.8"
rayon = "1.10"
dashmap = "6.1"
once_cell = "1.20"
parking_lot = "0.12"
thiserror = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4"
env_logger = "0.11"
sysinfo = "0.31"