From 15982d5a61cd9411e631d1653a7522e1f2ee6672 Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Mon, 20 Nov 2023 09:26:36 +0100 Subject: [PATCH] build: fix CI errors due to incorrect MSRV (#90) * Set minimum rust version to 1.63 due to rayon-core MSRV requirements, and add a matching `rust-version` in the Cargo.toml --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9748597..faa7cf4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,14 +12,14 @@ description = "A suite of powerful, extensible, generic, endian-aware Read/Write include = ["src/**/*", "Cargo.toml", "LICENSE", "README.md"] rust-version = "1.63" +[dependencies] +scroll_derive = { version = "0.11", optional = true, path = "scroll_derive" } + [features] default = ["std"] std = [] derive = ["dep:scroll_derive"] -[dependencies] -scroll_derive = { version = "0.11", optional = true, path = "scroll_derive" } - [dev-dependencies] rayon = "1" byteorder = "1"