mirror of
https://github.com/nushell/nushell.git
synced 2025-04-16 09:18:21 +02:00
Allow using the system's copy of zstd for Polars (#6232)
This commit is contained in:
parent
cd0a04f02a
commit
9f131d998d
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -2678,6 +2678,7 @@ dependencies = [
|
|||||||
"wax",
|
"wax",
|
||||||
"which",
|
"which",
|
||||||
"windows",
|
"windows",
|
||||||
|
"zstd",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -5639,4 +5640,5 @@ checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"cc",
|
"cc",
|
||||||
"libc",
|
"libc",
|
||||||
|
"pkg-config",
|
||||||
]
|
]
|
||||||
|
@ -93,6 +93,7 @@ trash-support = ["nu-command/trash-support"]
|
|||||||
|
|
||||||
# Dataframe feature for nushell
|
# Dataframe feature for nushell
|
||||||
dataframe = ["nu-command/dataframe"]
|
dataframe = ["nu-command/dataframe"]
|
||||||
|
system-zstd = ["nu-command/system-zstd"]
|
||||||
|
|
||||||
# Database commands for nushell
|
# Database commands for nushell
|
||||||
database = ["nu-command/database"]
|
database = ["nu-command/database"]
|
||||||
|
@ -89,6 +89,7 @@ reedline = { version = "0.9.0", features = ["bashisms", "sqlite"]}
|
|||||||
wax = { version = "0.5.0", features = ["diagnostics"] }
|
wax = { version = "0.5.0", features = ["diagnostics"] }
|
||||||
rusqlite = { version = "0.28.0", features = ["bundled"], optional = true }
|
rusqlite = { version = "0.28.0", features = ["bundled"], optional = true }
|
||||||
sqlparser = { version = "0.16.0", features = ["serde"], optional = true }
|
sqlparser = { version = "0.16.0", features = ["serde"], optional = true }
|
||||||
|
zstd = { version = "*", optional = true }
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
umask = "2.0.0"
|
umask = "2.0.0"
|
||||||
@ -124,6 +125,7 @@ trash-support = ["trash"]
|
|||||||
which-support = ["which"]
|
which-support = ["which"]
|
||||||
plugin = ["nu-parser/plugin"]
|
plugin = ["nu-parser/plugin"]
|
||||||
dataframe = ["polars", "num"]
|
dataframe = ["polars", "num"]
|
||||||
|
system-zstd = ["zstd/pkg-config"]
|
||||||
database = ["sqlparser", "rusqlite"]
|
database = ["sqlparser", "rusqlite"]
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
|
Loading…
Reference in New Issue
Block a user