packager/pkgr/Cargo.toml
Didier f8f95546fd
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: better time display and tmpdir expands homedir
2023-08-07 16:19:10 +02:00

27 lines
682 B
TOML

[package]
name = "pkgr"
description = "A package manager and build tool."
version = "0.1.0"
edition = "2021"
authors = [
"Didier <dev@faulty.nl>"
]
license-file = "../LICENSE"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
manifest = { path = "../manifest" }
pkgfile = { path = "../pkgfile" }
fern = "0.6.2"
log = "0.4.19"
regex = "1.9.1"
clap = { version = "4.3.12", features = ["derive"] }
colored = "2.0.4"
toml = "0.7.6"
serde = { version = "1.0.171", features = ["derive"] }
libc = "0.2.80"
reqwest = { version = "0.11.18", features = ["blocking"] }
tar = "0.4.39"
humantime = "2.1.0"
expanduser = "1.2.2"