feat: added command functionality to install
All checks were successful
/ check (push) Successful in 39s
All checks were successful
/ check (push) Successful in 39s
This commit is contained in:
parent
1a95046b87
commit
d9d4728dd6
20 changed files with 464 additions and 76 deletions
|
|
@ -1,14 +1,25 @@
|
|||
[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"
|
||||
manifest = { path = "../manifest" }
|
||||
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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue