-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 699 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (29 loc) · 699 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
30
31
32
33
34
[package]
edition = "2021"
name = "node-workers"
version = "0.8.1"
authors = ["Cyriac <cyriacbr@gmail.com>"]
description = "A pool of long-lived nodejs workers"
documentation = "https://docs.rs/node_workers"
repository = "https://github.com/CyriacBr/node-workers"
license = "MIT"
keywords = ["nodejs", "js", "worker", "pool", "process"]
categories = ["concurrency"]
[lib]
crate-type = ["lib"]
[dependencies]
serde_json = "1.0.79"
serde = { version = "1.0.136", features = ["derive"] }
anyhow = "1.0.56"
shell-words = "1.1.0"
[dev-dependencies]
criterion = "0.3"
benchman = "0.2.6"
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "timing"
harness = false
[profile.release]
lto = true