From b1217851be88585e69ac4fba7313e9f7146f21df Mon Sep 17 00:00:00 2001 From: Archie Kitsuniru <39557395+kitsuniru@users.noreply.github.com> Date: Sun, 8 Sep 2024 05:10:48 +0300 Subject: [PATCH] fix: use non-exact version boundary for `bytemuck` --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 50ff660..0b14760 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ borsh = { version = "=1.5.1", features = ["derive"], optional = true } # https://github.com/mongodb/bson-rust/pull/328 bson = { version = "=2.9.0", git = "https://github.com/djkoloski/bson-rust", branch = "add_into_vec", optional = true } bytecheck = { version = "=0.6.12", optional = true } -bytemuck = { version = "=1.18.0", optional = true } +bytemuck = { version = "1.18.0", optional = true } capnp = { version = "=0.19.6", optional = true } cbor4ii = { version = "=0.3.2", features = [ "use_std", "serde1" ], optional = true } ciborium = { version = "=0.2.2", optional = true }