diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 864a835d1e26..259b304fb5b8 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -12,7 +12,7 @@ members = [ ] [workspace.package] -version = "0.0.1" +version = "0.0.2" repository = "https://github.com/cosmos/cosmos-sdk" license = "Apache-2.0" @@ -31,14 +31,14 @@ repository.workspace = true license.workspace = true [dependencies] -ixc_core = { path = "core", version = "0.0.1" } -ixc_schema = { path = "schema", version = "0.0.1" } -ixc_message_api = { path = "message_api", version = "0.0.1" } -state_objects = { path = "state_objects", version = "0.0.1" } +ixc_core = { path = "core", version = "0.0.2" } +ixc_schema = { path = "schema", version = "0.0.2" } +ixc_message_api = { path = "message_api", version = "0.0.2" } +state_objects = { path = "state_objects", version = "0.0.2" } simple_time = { path = "util/simple_time", version = "0.0.1" } -ixc_core_macros = { path = "core_macros", version = "0.0.1" } -ixc_schema_macros = { path = "schema_macros", version = "0.0.1" } -state_objects_macros = { path = "state_objects_macros", version = "0.0.1" } +ixc_core_macros = { path = "core_macros", version = "0.0.2" } +ixc_schema_macros = { path = "schema_macros", version = "0.0.2" } +state_objects_macros = { path = "state_objects_macros", version = "0.0.2" } [dev-dependencies] ixc_testing = { path = "testing", version = "0.0.1" } diff --git a/rust/util/simple_time/Cargo.toml b/rust/util/simple_time/Cargo.toml index 7982eda6c6b0..81cd3e117157 100644 --- a/rust/util/simple_time/Cargo.toml +++ b/rust/util/simple_time/Cargo.toml @@ -2,7 +2,7 @@ name = "simple_time" edition = "2021" description = "A simple time i128 nano-second precision time library" -version.workspace = true +version = "0.0.1" repository.workspace = true license.workspace = true