-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (28 loc) · 982 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
[package]
name = "rocketfetch"
version = "0.7.1"
authors = ["Devan Looches <[email protected]>"]
edition = "2021"
include = ["src/**/*"]
license = "MIT"
description = "A WIP command line system information tool written asynchronously in rust for performance with toml file configuration."
repository = "https://github.com/devanlooches/rustfetch"
readme = "README.md"
keywords = ["system", "cli", "fetch", "multithreaded", "multithreading"]
categories = ["command-line-utilities"]
[dependencies]
any_terminal_size = { version = "0.1.21" }
console = { version = "0.15.2"}
dirs = { version = "4.0.0"}
libmacchina = { version = "6.3.1"}
regex = { version = "1.7.0"}
secfmt = { version = "0.1.1"}
serde = { version = "1.0.147"}
serde_derive = { version = "1.0.147"}
simple_logger = { version = "4.0.0"}
structopt = { version = "0.3.26"}
textwrap = { version = "0.16.0"}
toml = { version = "0.5.9"}
user-error = { version = "1.2.8"}
[dev-dependencies]
pretty_assertions = "1.3.0"