summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNamilskyy <alive6863@gmail.com>2025-11-17 22:18:46 +0300
committerNamilskyy <alive6863@gmail.com>2025-11-18 22:03:57 +0300
commitb417227555dded641b03e9583e4b3f893b5d2e83 (patch)
tree4b5c956bfc8c2702925438af20a1533ef8160633
parent9b772a55055d863982cbcc3ba7900c26f156c23d (diff)
Edited version in cargo.toml
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--src/main.rs3
3 files changed, 3 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 206a3d1..7ca77db 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2272,7 +2272,7 @@ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
[[package]]
name = "wfetch"
-version = "0.1.0"
+version = "0.0.1"
dependencies = [
"chrono",
"clap 4.5.51",
diff --git a/Cargo.toml b/Cargo.toml
index 379e24d..16c3faa 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wfetch"
-version = "0.1.0"
+version = "0.0.1"
edition = "2021"
[dependencies]
diff --git a/src/main.rs b/src/main.rs
index d232ef0..930a429 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -33,13 +33,12 @@ use std::fs::{self, File};
use std::path::PathBuf;
use clap::{Parser, Subcommand};
-use termimage::Options;
mod parser;
mod shared;
use parser::{get_config, parse_weather, generate_config, Config};
-use shared::{WeatherData, Current, Hourly};
+use shared::WeatherData;
#[derive(Parser)]
#[command(name = "wfetch")]