chore: Bump pueue-lib to v0.19.5

This commit is contained in:
Arne Beer 2022-03-29 10:25:58 +02:00
parent f41eb222b5
commit b12e2d1936
No known key found for this signature in database
GPG key ID: CC9408F679023B65
3 changed files with 19 additions and 14 deletions

2
Cargo.lock generated
View file

@ -977,7 +977,7 @@ dependencies = [
[[package]]
name = "pueue-lib"
version = "0.19.4"
version = "0.19.5"
dependencies = [
"anyhow",
"async-trait",

View file

@ -13,7 +13,7 @@ rust-version = "1.58"
edition = "2021"
[badges]
maintenance = { status="actively-developed" }
maintenance = { status = "actively-developed" }
[workspace]
members = ["lib"]
@ -33,34 +33,34 @@ name = "pueued"
path = "daemon/main.rs"
[dependencies]
pueue-lib = { version="0.19.4", path="lib" }
pueue-lib = { version = "0.19.5", path = "lib" }
anyhow = "1"
chrono = { version="0.4", features=["serde"] }
chrono = { version = "0.4", features = ["serde"] }
chrono-english = "0.1"
shell-escape = "0.1"
tempfile = "3"
crossbeam-channel = "0.5"
tokio = { version="1", features=["rt-multi-thread", "time", "io-std"] }
tokio = { version = "1", features = ["rt-multi-thread", "time", "io-std"] }
snap = "1"
serde = "1"
serde_json = "1"
serde_derive = "1"
log = "0.4"
simplelog = { version="0.11", default-features=false }
clap = { version="3", features=["derive", "cargo"] }
simplelog = { version = "0.11", default-features = false }
clap = { version = "3", features = ["derive", "cargo"] }
clap_complete = "3"
crossterm = "0.23"
comfy-table = "5"
handlebars = "4"
ctrlc = { version="3", features=["termination"] }
ctrlc = { version = "3", features = ["termination"] }
# Windows
[target.'cfg(windows)'.dependencies]
winapi = { version="0.3", features=[
winapi = { version = "0.3", features = [
"tlhelp32",
"handleapi",
"processthreadsapi",
@ -75,7 +75,7 @@ whoami = "1"
# Linux / Freebsd
[target.'cfg(any(target_os = "linux", target_os = "freebsd"))'.dependencies]
procfs = { version="0.12", default-features=false }
procfs = { version = "0.12", default-features = false }
[dev-dependencies]
assert_cmd = "2"

View file

@ -1,7 +1,7 @@
[package]
name = "pueue-lib"
description = "The shared library to work with the Pueue client and daemon."
version = "0.19.4"
version = "0.19.5"
authors = ["Arne Beer <contact@arne.beer>"]
homepage = "https://github.com/nukesor/pueue"
repository = "https://github.com/nukesor/pueue"
@ -13,19 +13,24 @@ rust-version = "1.58"
edition = "2021"
[badges]
maintenance = { status="actively-developed" }
maintenance = { status = "actively-developed" }
[dependencies]
thiserror = "1"
dirs = "4"
chrono = { version="0.4", features=["serde"] }
chrono = { version = "0.4", features = ["serde"] }
rand = "0.8"
shellexpand = "2.1"
strum = "0.23"
strum_macros = "0.23"
async-trait = "0.1"
tokio = { version="1", features=["macros", "net", "rt-multi-thread", "io-util"] }
tokio = { version = "1", features = [
"macros",
"net",
"rt-multi-thread",
"io-util",
] }
tokio-rustls = "0.23"
rustls = "0.20"
rustls-pemfile = "0.2"