nushell: update to 0.88.1.
This commit is contained in:
parent
9e64fbe79e
commit
3a414c3bc7
2 changed files with 36 additions and 20 deletions
|
@ -1,8 +1,21 @@
|
|||
From d50a7241de7ebba53bec74b3dd5086417f38923b Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
|
||||
<jan.christian@gruenhage.xyz>
|
||||
Date: Sat, 16 Dec 2023 14:01:23 +0100
|
||||
Subject: [PATCH] use system libraries
|
||||
|
||||
---
|
||||
Cargo.lock | 1 -
|
||||
Cargo.toml | 2 +-
|
||||
crates/nu-cli/Cargo.toml | 2 +-
|
||||
crates/nu-command/Cargo.toml | 2 +-
|
||||
4 files changed, 3 insertions(+), 4 deletions(-)
|
||||
|
||||
diff --git a/Cargo.lock b/Cargo.lock
|
||||
index b98f9a89..7e44b502 100644
|
||||
index 495bc2678..c7c1e24c7 100644
|
||||
--- a/Cargo.lock
|
||||
+++ b/Cargo.lock
|
||||
@@ -2217,7 +2217,6 @@ version = "0.26.0"
|
||||
@@ -2194,7 +2194,6 @@ version = "0.26.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326"
|
||||
dependencies = [
|
||||
|
@ -11,41 +24,44 @@ index b98f9a89..7e44b502 100644
|
|||
"vcpkg",
|
||||
]
|
||||
diff --git a/Cargo.toml b/Cargo.toml
|
||||
index f0d1802b..bff6b703 100644
|
||||
index b3848de41..b8236f27a 100644
|
||||
--- a/Cargo.toml
|
||||
+++ b/Cargo.toml
|
||||
@@ -69,7 +69,7 @@ nu-term-grid = { path = "./crates/nu-term-grid", version = "0.87.0" }
|
||||
nu-std = { path = "./crates/nu-std", version = "0.87.0" }
|
||||
nu-utils = { path = "./crates/nu-utils", version = "0.87.0" }
|
||||
@@ -69,7 +69,7 @@ nu-term-grid = { path = "./crates/nu-term-grid", version = "0.88.1" }
|
||||
nu-std = { path = "./crates/nu-std", version = "0.88.1" }
|
||||
nu-utils = { path = "./crates/nu-utils", version = "0.88.1" }
|
||||
nu-ansi-term = "0.49.0"
|
||||
-reedline = { version = "0.26.0", features = ["bashisms", "sqlite"] }
|
||||
+reedline = { version = "0.26.0", features = ["bashisms", "sqlite-dynlib"] }
|
||||
-reedline = { version = "0.27.0", features = ["bashisms", "sqlite"] }
|
||||
+reedline = { version = "0.27.0", features = ["bashisms", "sqlite-dynlib"] }
|
||||
|
||||
crossterm = "0.27"
|
||||
ctrlc = "3.4"
|
||||
diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml
|
||||
index 5fcd55b6..a91cf4ee 100644
|
||||
index d07b6dab4..c2e50461d 100644
|
||||
--- a/crates/nu-cli/Cargo.toml
|
||||
+++ b/crates/nu-cli/Cargo.toml
|
||||
@@ -25,7 +25,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.87.0" }
|
||||
nu-utils = { path = "../nu-utils", version = "0.87.0" }
|
||||
nu-color-config = { path = "../nu-color-config", version = "0.87.0" }
|
||||
@@ -25,7 +25,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.88.1" }
|
||||
nu-utils = { path = "../nu-utils", version = "0.88.1" }
|
||||
nu-color-config = { path = "../nu-color-config", version = "0.88.1" }
|
||||
nu-ansi-term = "0.49.0"
|
||||
-reedline = { version = "0.26.0", features = ["bashisms", "sqlite"] }
|
||||
+reedline = { version = "0.26.0", features = ["bashisms", "sqlite-dynlib"] }
|
||||
-reedline = { version = "0.27.0", features = ["bashisms", "sqlite"] }
|
||||
+reedline = { version = "0.27.0", features = ["bashisms", "sqlite-dynlib"] }
|
||||
|
||||
chrono = { default-features = false, features = ["std"], version = "0.4" }
|
||||
crossterm = "0.27"
|
||||
diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml
|
||||
index bbd6f7a3..423c45f0 100644
|
||||
index 4835bf264..ef8a83aaf 100644
|
||||
--- a/crates/nu-command/Cargo.toml
|
||||
+++ b/crates/nu-command/Cargo.toml
|
||||
@@ -72,7 +72,7 @@ rand = "0.8"
|
||||
@@ -73,7 +73,7 @@ rand = "0.8"
|
||||
rayon = "1.8"
|
||||
regex = "1.9.5"
|
||||
roxmltree = "0.18"
|
||||
-rusqlite = { version = "0.29", features = ["bundled"], optional = true }
|
||||
+rusqlite = { version = "0.29", optional = true }
|
||||
-rusqlite = { version = "0.29", features = ["bundled", "backup"], optional = true }
|
||||
+rusqlite = { version = "0.29", features = ["backup"], optional = true }
|
||||
same-file = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
--
|
||||
2.43.0
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'nushell'
|
||||
pkgname=nushell
|
||||
version=0.87.1
|
||||
version=0.88.1
|
||||
revision=1
|
||||
build_style=cargo
|
||||
configure_args="--features=extra"
|
||||
|
@ -14,7 +14,7 @@ license="MIT"
|
|||
homepage="https://www.nushell.sh/"
|
||||
changelog="https://www.nushell.sh/blog/"
|
||||
distfiles="https://github.com/nushell/nushell/archive/refs/tags/${version}.tar.gz"
|
||||
checksum=92087ff56c98acb86dc14e9566748c0f470ad5f13277dd62bda878146535fa83
|
||||
checksum=19f5a46799142117f61989a76f85fdd24361fe9e5068565d7fff36b91a7a7a39
|
||||
register_shell="/usr/bin/nu"
|
||||
# all tests fail with argument --target
|
||||
make_check=no
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue