From 2b4beaff8bcfd7bb827e1db4496e4422fd1f44be Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Tue, 21 May 2024 17:29:19 -0400 Subject: [PATCH] lib: use pkg-config feature for zstd I don't want to default to using vendored C sources. Signed-off-by: Colin Walters --- lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 742abf2b..ec31dc86 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -42,7 +42,7 @@ tokio = { features = ["io-std", "time", "process", "rt", "net"], version = ">= 1 tokio-util = { features = ["io-util"], version = "0.7" } tokio-stream = { features = ["sync"], version = "0.1.8" } tracing = "0.1" -zstd = "0.13.1" +zstd = { version = "0.13.1", features = ["pkg-config"] } indoc = { version = "2", optional = true } xshell = { version = "0.2", optional = true }