Skip to content

Commit

Permalink
fix: fix min version for crate
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkgos committed Dec 13, 2023
1 parent c912613 commit 9b56182
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions goup-downloader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion goup-version/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions goup/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 9b56182

Please sign in to comment.