From 86593d0966a67348dfb5e769936d85276956e9ba Mon Sep 17 00:00:00 2001 From: Josh McKinney Date: Sun, 31 Mar 2024 12:49:50 -0700 Subject: [PATCH] chore(deps): bump serde_derive and bytemuck versions This ensures that this version can be built with the specified minimal versions --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 393a53ad..b8cfd9fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,12 +27,12 @@ compiler_builtins = { version = "0.1.2", optional = true } [dev-dependencies] trybuild = "1.0.18" rustversion = "1.0" -serde_derive = "1.0" +serde_derive = "1.0.103" serde_json = "1.0" serde_test = "1.0.19" zerocopy = { version = "0.7", features = ["derive"] } arbitrary = { version = "1.0", features = ["derive"] } -bytemuck = { version = "1.0", features = ["derive"] } +bytemuck = { version = "1.12.2", features = ["derive"] } [features] std = []