From d36edb4e0183a8385131bc65c6ecef1cd4d45d7b Mon Sep 17 00:00:00 2001 From: KtorZ Date: Thu, 25 Jul 2024 10:17:29 +0200 Subject: [PATCH] Add libssl-dev build dependency for musl target. --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 5bd0d36e..034c3f1f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,6 +41,9 @@ publish-prereleases = true x86_64-unknown-linux-gnu = "ubuntu-22.04" x86_64-unknown-linux-musl = "ubuntu-22.04" +[workspace.metadata.dist.dependencies.apt] +libssl-dev = { targets = [ "x86_64-unknown-linux-musl" ] } + [workspace.dependencies] walkdir = "2.3.2" pallas = "0.22.0"