packager/pkgr/Cargo.toml
Didier d9d4728dd6
All checks were successful
/ check (push) Successful in 39s
feat: added command functionality to install
2023-07-17 17:47:42 +02:00

25 lines
641 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"