diff options
| author | namilsk <namilsk@namilsk.tech> | 2026-02-11 13:46:58 +0300 |
|---|---|---|
| committer | namilsk <namilsk@namilsk.tech> | 2026-02-11 13:46:58 +0300 |
| commit | fc12cd0bfad207cef069add75ca6ea6664792e9c (patch) | |
| tree | 8ef92f4fd29470ca198173a4c98aca1fee397ecb /Cargo.toml | |
| parent | c51d38174e77bd9127da31447aa2f37bc197620a (diff) | |
Switched crate-name for crates.io publish and added optimisations to `Cargo.toml`
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 27 |
1 files changed, 19 insertions, 8 deletions
@@ -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 |
