1diff --git a/Cargo.lock b/Cargo.lock
2index 7376ffe6a..a7d3335cc 100644
3--- a/Cargo.lock
4+++ b/Cargo.lock
5@@ -2751,6 +2751,7 @@ dependencies = [
6 "which",
7 "windows",
8 "winreg",
9+ "zstd",
10 ]
11
12 [[package]]
13@@ -5881,4 +5882,5 @@ checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
14 dependencies = [
15 "cc",
16 "libc",
17+ "pkg-config",
18 ]
19diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml
20index d293f3e39..a462d67dc 100644
21--- a/crates/nu-command/Cargo.toml
22+++ b/crates/nu-command/Cargo.toml
23@@ -93,6 +93,8 @@ wax = { version = "0.5.0", features = ["diagnostics"] }
24 rusqlite = { version = "0.28.0", features = ["bundled"], optional = true }
25 sqlparser = { version = "0.23.0", features = ["serde"], optional = true }
26
27+zstd = { version = "*", features = [ "pkg-config" ] }
28+
29 [target.'cfg(windows)'.dependencies]
30 winreg = "0.10.1"
31