From 9b56182caa4e60832e8dd1701b6042c4b8ef3f6a Mon Sep 17 00:00:00 2001 From: thinkgo Date: Wed, 13 Dec 2023 17:12:48 +0800 Subject: [PATCH] fix: fix min version for crate --- goup-downloader/Cargo.toml | 4 ++-- goup-version/Cargo.toml | 2 +- goup/Cargo.toml | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/goup-downloader/Cargo.toml b/goup-downloader/Cargo.toml index ed35f25..21e6dd7 100644 --- a/goup-downloader/Cargo.toml +++ b/goup-downloader/Cargo.toml @@ -13,8 +13,8 @@ repository.workspace =true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -goup-consts = {path = "../goup-consts", version = "0.2.8"} -goup-version = {path = "../goup-version", version = "0.2.8"} +goup-consts = {path = "../goup-consts", version = "0.2"} +goup-version = {path = "../goup-version", version = "0.2"} anyhow = "1.0" dirs = "5.0" regex = "1.10" diff --git a/goup-version/Cargo.toml b/goup-version/Cargo.toml index 4d06908..0031e4e 100644 --- a/goup-version/Cargo.toml +++ b/goup-version/Cargo.toml @@ -14,7 +14,7 @@ repository.workspace =true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -goup-consts = {path = "../goup-consts", version = "0.2.8"} +goup-consts = {path = "../goup-consts", version = "0.2"} anyhow = "1.0" dirs = "5.0" regex = "1.10" diff --git a/goup/Cargo.toml b/goup/Cargo.toml index 86ad759..ee1488f 100644 --- a/goup/Cargo.toml +++ b/goup/Cargo.toml @@ -23,9 +23,9 @@ version_check = "0.9" shadow-rs = "0.25" [dependencies] -goup-consts = {path = "../goup-consts", version = "0.2.8"} -goup-version = {path = "../goup-version", version = "0.2.8"} -goup-downloader = {path = "../goup-downloader", version = "0.2.8"} +goup-consts = {path = "../goup-consts", version = "0.2"} +goup-version = {path = "../goup-version", version = "0.2"} +goup-downloader = {path = "../goup-downloader", version = "0.2"} clap = {version = "4.4", features = ["derive", "env"]} clap_complete = "4.4"