From b417227555dded641b03e9583e4b3f893b5d2e83 Mon Sep 17 00:00:00 2001 From: Namilskyy Date: Mon, 17 Nov 2025 22:18:46 +0300 Subject: Edited version in cargo.toml --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/main.rs | 3 +-- 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")] -- cgit v1.2.3