diff --git a/Cargo.toml b/Cargo.toml index 11686f8..9a7984a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ authors = ["adeoye adefemi "] description = "a compilation of utility scripts for every day use in building applications and using certain features on my laptop" edition = "2021" name = "utils-cli" -version = "1.0.1-alpha.0" +version = "1.0.2-alpha.0" license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -39,7 +39,7 @@ tokio = {version = "1.20.0", features = ["macros", "rt-multi-thread"] } uuid = {version = "1.4.1", features = ["v4", "fast-rng", "macro-diagnostics"] } sea-orm = { version = "0.12", features = [ "sqlx-sqlite", "runtime-tokio-native-tls", "macros" , "with-uuid", "with-time"] } anyhow = "1.0.81" -entity = { path = "./entity", version = "1.0.1-alpha.0"} +entity = { path = "./entity", version = "1.0.2-alpha.0"} migration = { path = "./migration", version = "*"} # depends on your needs diff --git a/entity/Cargo.toml b/entity/Cargo.toml index 1ac304d..f108bb2 100644 --- a/entity/Cargo.toml +++ b/entity/Cargo.toml @@ -1,8 +1,9 @@ [package] name = "entity" -version = "1.0.1-alpha.0" +version = "1.0.2-alpha.0" edition = "2021" + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] diff --git a/migration/Cargo.toml b/migration/Cargo.toml index 4b7b0b8..3e2c963 100644 --- a/migration/Cargo.toml +++ b/migration/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "migration" +name = "utils-cli-migration" version = "1.0.0" edition = "2021" publish = false