From 291e24db87ca0030e9bf94cc892f4f8cce62c498 Mon Sep 17 00:00:00 2001 From: Dr Maxim Orlovsky Date: Tue, 2 May 2023 10:44:39 +0200 Subject: [PATCH] ci: fix no-default-features builds --- commit_verify/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commit_verify/Cargo.toml b/commit_verify/Cargo.toml index 211d8ef1..0551bc8a 100644 --- a/commit_verify/Cargo.toml +++ b/commit_verify/Cargo.toml @@ -23,7 +23,7 @@ required-features = ["stl"] [dependencies] amplify = { version = "4.0.0-beta.20", features = ["hex", "apfloat"] } -commit_encoding_derive = { version = "0.10.0-beta.1", path = "derive", optional = true } +commit_encoding_derive = { version = "0.10.0-beta.1", path = "derive" } strict_encoding = "2.0.0" strict_types = { version = "1.0.0-rc.1", optional = true } rand = { version = "0.8.5", optional = true } @@ -37,7 +37,7 @@ default = ["derive"] all = ["rand", "serde", "stl", "derive"] serde = ["serde_crate", "amplify/serde"] stl = ["strict_types", "strict_types/base64"] -derive = ["commit_encoding_derive"] +derive = [] [package.metadata.docs.rs] features = [ "all" ]