-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (32 loc) · 900 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
34
35
36
37
38
[package]
name = "arpx"
description = "Small-scale process orchestration"
version = "0.5.0"
readme = "README.md"
categories = ["command-line-utilities"]
keywords = ["automation", "orchestration", "task", "process"]
authors = ["Jared Gorski <[email protected]>"]
repository = "https://github.com/jaredgorski/arpx"
license-file = "LICENSE"
edition = "2021"
[badges]
travis-ci = { repository = "jaredgorski/arpx" }
[[bin]]
name = "arpx"
path = "src/main.rs"
[dependencies]
anyhow = { version = "1.0.55", features = ["std"] }
arpx_job_parser = "0.1.12"
clap = { version = "3.0.14", features = ["cargo"] }
crossbeam-channel = "0.5.2"
log = "0.4.14"
log4rs = "1.0.0"
serde = { version = "1.0.136", features = ["derive"] }
serde_yaml = "0.8.23"
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
[[bench]]
name = "loop_3"
harness = false
[profile.bench]
debug = true