diff --git a/Cargo.lock b/Cargo.lock index cd43c2f..2864c85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -357,7 +357,7 @@ dependencies = [ [[package]] name = "fav_cli" -version = "0.0.1-alpha5" +version = "0.0.1" dependencies = [ "chrono", "clap", @@ -405,7 +405,7 @@ dependencies = [ [[package]] name = "fav_utils" -version = "0.0.1-beta5" +version = "0.0.1" dependencies = [ "fav_core", "indicatif", diff --git a/Cargo.toml b/Cargo.toml index cae9685..725c35d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,9 +21,9 @@ repository = "https://github.com/kingwingfly/fav" documentation = "" [workspace.dependencies] -fav_core = { path = "fav_core" } +fav_core = { path = "fav_core", version = ">=0.0.1" } fav_derive = { path = "fav_derive", version = ">=0.0.1" } -fav_utils = { path = "fav_utils" } +fav_utils = { path = "fav_utils", version = ">=0.0.1" } fav_cli = { path = "fav_cli" } fav_utils_old = { path = "fav_utils_old" } diff --git a/fav_cli/Cargo.toml b/fav_cli/Cargo.toml index 3e9b496..35f67fd 100644 --- a/fav_cli/Cargo.toml +++ b/fav_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fav_cli" -version = "0.0.1-alpha5" +version = "0.0.1" authors.workspace = true description = "Fav's CLI, helping persist the remote source. Repo: https://github.com/kingwingfly/fav" license.workspace = true diff --git a/fav_utils/Cargo.toml b/fav_utils/Cargo.toml index efdfc3c..f8daeed 100644 --- a/fav_utils/Cargo.toml +++ b/fav_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fav_utils" -version = "0.0.1-beta5" +version = "0.0.1" authors.workspace = true description = "Fav's utils crate; A collection of utilities and data structures for the fav project" license.workspace = true