summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml27
1 files changed, 19 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0863bc0..f0cde32 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,10 +1,12 @@
[package]
-name = "wfetch"
-version = "0.0.2"
-edition = "2021"
-categories = ["command-line-utilities"]
-authors = ["namilsk <namilsk@namilsk.tech>"]
-license = "MIT"
+name = "WeatherFetch"
+version = "0.0.2"
+edition = "2021"
+categories = ["command-line-utilities"]
+authors = ["namilsk <namilsk@namilsk.tech>"]
+license = "MIT"
+description = "Fastfetch but for weather"
+repository = "https://github.com/Nam4ik/WeatherFetch" # "https://git.namilsk.tech/wfetch.git"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
@@ -14,5 +16,14 @@ clap = { version = "4.4", features = ["derive"] }
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1.0", features = ["full"] }
clap_derive = "4.5.49"
-serde_yml = "0.0.12"
-termimage = "1.2.2"
+serde_yml = "0.0.12"
+termimage = "1.2.2"
+
+[[bin]]
+name = "wfetch"
+path = "src/main.rs"
+
+[profile.release]
+strip = true
+lto = "fat"
+codegen-units = 1