packager/pkgr/Cargo.toml

26 lines
641 B
TOML
Raw Normal View History

2023-07-13 00:11:44 +02:00
[package]
name = "pkgr"
description = "A package manager and build tool."
2023-07-13 00:11:44 +02:00
version = "0.1.0"
edition = "2021"
authors = [
"Didier <dev@faulty.nl>"
]
license-file = "../LICENSE"
2023-07-13 00:11:44 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
manifest = { path = "../manifest" }
pkgfile = { path = "../pkgfile" }
2023-07-16 19:00:09 +02:00
fern = "0.6.2"
log = "0.4.19"
regex = "1.9.1"
2023-07-17 11:50:19 +02:00
clap = { version = "4.3.12", features = ["derive"] }
2023-07-17 12:13:14 +02:00
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"