From 9b8d4d4ab7d1995c1dd1b67e4db13901cfd82ccf Mon Sep 17 00:00:00 2001 From: Petr Gadorek Date: Fri, 18 Oct 2024 14:36:14 +0200 Subject: [PATCH] release_v0.1.3 --- Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- src/wizard/helpers.rs | 2 -- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ed47ca6..3ab5f2f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1649,7 +1649,7 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" [[package]] name = "idf-im-cli" -version = "0.1.0" +version = "0.1.3" dependencies = [ "byte-unit", "clap", @@ -1676,8 +1676,8 @@ dependencies = [ [[package]] name = "idf-im-lib" -version = "0.1.0" -source = "git+https://github.com/espressif/idf-im-lib.git?branch=master#ce610028928149c7558e7e9964e524f2c2560de4" +version = "0.1.2" +source = "git+https://github.com/espressif/idf-im-lib.git?tag=v0.1.2#b20429aa4bb2e07421fd2f4fe83b0cdaf35a3ff2" dependencies = [ "colored", "config", diff --git a/Cargo.toml b/Cargo.toml index ac779cc..7168d75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "idf-im-cli" -version = "0.1.0" +version = "0.1.3" edition = "2021" [dependencies] tokio = {version = "1.37.0", features=["full"]} -idf-im-lib = { git = "https://github.com/espressif/idf-im-lib.git", branch="master" } +idf-im-lib = { git = "https://github.com/espressif/idf-im-lib.git", tag="v0.1.2" } clap = {version = "4.5", features = ["cargo", "derive", "color"]} crossterm = "0.27.0" dialoguer = { git = "https://github.com/Hahihula/dialoguer.git", branch = "folder-select", features = ["folder-select"] } diff --git a/src/wizard/helpers.rs b/src/wizard/helpers.rs index de4b125..586afa7 100644 --- a/src/wizard/helpers.rs +++ b/src/wizard/helpers.rs @@ -3,8 +3,6 @@ use dialoguer::{theme::ColorfulTheme, Confirm, Input, MultiSelect, Select}; use indicatif::{ProgressBar, ProgressState, ProgressStyle}; use log::debug; use rust_i18n::t; -use std::sync::mpsc; -use std::thread; use std::{ fmt::Write, time::{Duration, Instant},