-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
32 lines (29 loc) · 859 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
[package]
authors = ["Samuel Laurén <samuel.lauren@iki.fi>"]
description = "Command-line task queue"
license = "MIT"
name = "process-queue"
readme = "README.md"
version = "0.3.0"
repository = "https://github.com/Soft/process-queue"
edition = "2018"
keywords = ["queue", "task-queue"]
categories = ["command-line-utilities"]
[profile.release]
lto = true
panic = "abort"
codegen-units = 1
[[bin]]
name = "pqueue"
path = "src/main.rs"
[dependencies]
anyhow = "1"
bytes = "1"
libc = "0.2"
log = { version = "0.4", default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
shlex = "1"
simplelog = { version = "0.10", default-features = false }
structopt = { version = "0.3", default-features = false }
tokio = { version = "1", features = ["net", "process", "rt-multi-thread", "io-util", "sync", "signal", "macros", "time"] }