-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
42 lines (37 loc) · 1.01 KB
/
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
39
40
41
42
[package]
name = "pueue-lib"
description = "The shared library to work with the Pueue client and daemon."
version = "0.12.1-alpha.0"
authors = ["Arne Beer <contact@arne.beer>"]
homepage = "https://github.com/nukesor/pueue-lib"
repository = "https://github.com/nukesor/pueue-lib"
documentation = "https://docs.rs/pueue-lib"
license = "MIT"
keywords = ["shell", "command", "parallel", "task", "queue"]
readme = "README.md"
edition = "2018"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
anyhow = "1"
dirs = "3"
chrono = { version = "0.4", features = ["serde"] }
rand = "0.8"
strum_macros = "0.20"
async-std = { version = "1", features = ["attributes", "std"] }
async-tls = "0.11"
async-trait = "0.1"
rustls = "0.19"
rev_lines = "0.2"
rcgen = "0.8"
byteorder = "1"
snap = "1"
serde = "1"
bincode = "1"
serde_json = "1"
serde_yaml = "0.8"
serde_derive = "1"
config = { version = "^0.10", default-features = false, features = ["yaml"] }
log = "0.4"
[target.'cfg(not(windows))'.dependencies]
whoami = "^1"