diff --git a/Cargo.toml b/Cargo.toml index 4da3106..c22a65a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "native_model" -version = "0.1.0" +version = "0.2.0" authors = ["Vincent Herlemont "] edition = "2021" description = "A thin wrapper around serialized data which add information of identity and version." @@ -18,7 +18,7 @@ members = ["native_model_macro"] zerocopy = { version = "0.7.1", features = [ "derive"] } thiserror = "1.0" anyhow = "1.0" -native_model_macro = { version = "0.1.0", path = "native_model_macro" } +native_model_macro = { version = "0.2.0", path = "native_model_macro" } [dev-dependencies] serde = { version = "1.0", features = ["derive"] } diff --git a/native_model_macro/Cargo.toml b/native_model_macro/Cargo.toml index 04306f2..49c6314 100644 --- a/native_model_macro/Cargo.toml +++ b/native_model_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "native_model_macro" -version = "0.1.0" +version = "0.2.0" authors = ["Vincent Herlemont "] edition = "2018" description = "A procedural macro for native_model"