-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
30 lines (26 loc) · 817 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[workspace]
members = ["pfetch-extractor", "pfetch-logo-parser"]
[package]
name = "pfetch"
version = "2.11.1"
edition = "2021"
authors = ["Gobidev"]
description = "A rewrite of the pfetch system information tool"
repository = "https://github.com/Gobidev/pfetch-rs"
license = "MIT"
keywords = ["fetch", "pfetch", "cli", "system"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pfetch-logo-parser = { path = "./pfetch-logo-parser", version = "0.1.1" }
pfetch-extractor = { path = "./pfetch-extractor", version = "0.2.3" }
globset = "0.4.10"
dotenvy = "0.15.6"
glob = "0.3.1"
which = "7.0.1"
libmacchina = "8.0.0"
crossterm = "0.28.1"
os-release = "0.1.0"
unicode-width = "0.2.0"
[profile.release]
strip = true