Some checks failed
CI / ${{ matrix.name }} (${{ matrix.target }}) (false, Linux x86_64, ubuntu-latest, true, x86_64-unknown-linux-gnu) (push) Has been cancelled
CI / ${{ matrix.name }} (${{ matrix.target }}) (true, Linux armv7, ubuntu-latest, true, armv7-unknown-linux-gnueabihf) (push) Has been cancelled
CI / ${{ matrix.name }} (${{ matrix.target }}) (true, NetBSD, ubuntu-latest, true, x86_64-unknown-netbsd) (push) Has been cancelled
Release / Generate Changelog (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/aarch64-apple-darwin/release/pfetch, false, macOS aarch64, macos-latest, pfetch-macos-aarch64.tar.gz, true, aarch64-apple-darwin) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/aarch64-linux-android/release/pfetch, true, Android, ubuntu-latest, pfetch-android-aarch64.tar.gz, true, aarch64-linux-android) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/aarch64-unknown-linux-musl/release/pfetch, true, Linux musl aarch64, ubuntu-latest, pfetch-linux-musl-aarch64.tar.gz, true, aarch64-unknown-linux-musl) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/armv7-unknown-linux-gnueabihf/release/pfetch, true, Linux ARMv7, ubuntu-latest, pfetch-linux-gnueabihf-armv7.tar.gz, true, armv7-unknown-linux-gnueabihf) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/x86_64-apple-darwin/release/pfetch, false, macOS x86_64, macos-latest, pfetch-macos-x86_64.tar.gz, true, x86_64-apple-darwin) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/x86_64-pc-windows-gnu/release/pfetch.exe, false, Windows x86_64, windows-latest, pfetch-windows-x86_64.exe, true, x86_64-pc-windows-gnu) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/x86_64-unknown-freebsd/release/pfetch, true, freeBSD x86_64, ubuntu-latest, pfetch-freebsd-x86_64.tar.gz, true, x86_64-unknown-freebsd) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/x86_64-unknown-linux-gnu/release/pfetch, false, Linux GNU x86_64, ubuntu-latest, pfetch-linux-gnu-x86_64.tar.gz, true, x86_64-unknown-linux-gnu) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/x86_64-unknown-linux-musl/release/pfetch, true, Linux musl x86_64, ubuntu-latest, pfetch-linux-musl-x86_64.tar.gz, true, x86_64-unknown-linux-musl) (push) Has been cancelled
Release / ${{ matrix.name }} (${{ matrix.target }}) (target/x86_64-unknown-netbsd/release/pfetch, true, NetBSD x86_64, ubuntu-latest, pfetch-netbsd-x86_64.tar.gz, true, x86_64-unknown-netbsd) (push) Has been cancelled
28 lines
671 B
TOML
28 lines
671 B
TOML
[workspace]
|
|
members = ["pfetch-extractor"]
|
|
|
|
[package]
|
|
name = "pfetch"
|
|
version = "2.3.0"
|
|
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-extractor = { path = "./pfetch-extractor", version = "0.1.2" }
|
|
globset = "0.4.10"
|
|
dotenvy = "0.15.6"
|
|
glob = "0.3.1"
|
|
which = "4.4.0"
|
|
libmacchina = "6"
|
|
crossterm = "0.26.1"
|
|
|
|
[profile.release]
|
|
strip = true
|