-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·44 lines (37 loc) · 813 Bytes
/
Cargo.toml
File metadata and controls
executable file
·44 lines (37 loc) · 813 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "ffetch"
version = "0.6.0"
authors = ["0l3d <0l3dgit@gmail.com>"]
edition = "2021"
description = "Fast, minimal & Rust-powered system fetcher"
license = "GPL-3.0-or-later"
repository = "https://github.com/0l3d/ffetch"
readme = "README.md"
keywords = ["system", "fetch", "rust", "terminal", "minimal"]
categories = ["command-line-utilities", "filesystem", "hardware-support"]
[lib]
name = "ffetch"
path = "src/lib.rs"
[[bin]]
name = "ffetch"
path = "src/main.rs"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = "symbols"
debug = false
[profile.performance]
inherits = "release"
opt-level = 3
codegen-units = 16
lto = false
[profile.size]
inherits = "release"
opt-level = "z"
codegen-units = 1
lto = true
panic = "abort"
strip = "symbols"
[dependencies]