From a5bfd82c9ebf0284898f7b7126ae66113c3146c3 Mon Sep 17 00:00:00 2001 From: HoLLy Date: Sun, 13 Aug 2023 13:13:57 +0200 Subject: [PATCH] Correctly set minimum serde version This allows ciborium to build with the `-Z minimal-versions` cargo flag. Signed-off-by: HoLLy --- ciborium/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ciborium/Cargo.toml b/ciborium/Cargo.toml index d1e14d3..b50aca5 100644 --- a/ciborium/Cargo.toml +++ b/ciborium/Cargo.toml @@ -23,7 +23,7 @@ is-it-maintained-open-issues = { repository = "enarx/ciborium" } [dependencies] ciborium-ll = { path = "../ciborium-ll", version = "0.2.1" } ciborium-io = { path = "../ciborium-io", version = "0.2.1", features = ["alloc"] } -serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] } +serde = { version = "1.0.100", default-features = false, features = ["alloc", "derive"] } [dev-dependencies] serde_bytes = "0.11"