From be18635e77f01c31cb2f22239071517f3b8ff6eb Mon Sep 17 00:00:00 2001 From: Emmanuel Thompson Date: Sat, 7 Sep 2024 11:19:42 -0400 Subject: [PATCH] release: deku and deku-derive release --- Cargo.toml | 4 ++-- deku-derive/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3385815c..7eed830a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ authors = ["sharks "] edition = "2021" name = "deku" -version = "0.17.1" +version = "0.18.0" license = "MIT OR Apache-2.0" repository = "https://github.com/sharksforarms/deku" keywords = ["deku", "bits", "serialization", "deserialization", "struct"] @@ -29,7 +29,7 @@ error_in_core = [] bits = ["dep:bitvec", "deku_derive/bits"] [dependencies] -deku_derive = { version = "^0.17.0", path = "deku-derive", default-features = false} +deku_derive = { version = "^0.18.0", path = "deku-derive", default-features = false} bitvec = { version = "1.0.1", default-features = false, optional = true } log = { version = "0.4.22", optional = true } no_std_io = { version = "0.8.0", default-features = false, features = ["alloc"], package = "no_std_io2" } diff --git a/deku-derive/Cargo.toml b/deku-derive/Cargo.toml index cd72a89d..2680b35a 100644 --- a/deku-derive/Cargo.toml +++ b/deku-derive/Cargo.toml @@ -2,7 +2,7 @@ authors = ["sharks "] edition = "2021" name = "deku_derive" -version = "0.17.0" +version = "0.18.0" license = "MIT OR Apache-2.0" repository = "https://github.com/sharksforarms/deku" description = "bit level serialization/deserialization proc-macro for structs"