From 70fd492c7a79de37c81555bc7fa3f1448944ac86 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sun, 14 Apr 2024 17:46:36 +0000 Subject: [PATCH] Set default-features = false on uniffi, not that it does much --- uniffi/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uniffi/Cargo.toml b/uniffi/Cargo.toml index bff333a..3533700 100644 --- a/uniffi/Cargo.toml +++ b/uniffi/Cargo.toml @@ -10,7 +10,7 @@ build = "build.rs" [dependencies] dnssec-prover = { path = "../", default-features = false, features = ["validation"] } -uniffi = { version = "0.27" } +uniffi = { version = "0.27", default-features = false } [build-dependencies] uniffi = { version = "0.27", features = [ "build" ] } -- 2.39.5