diff --git a/Cargo.lock b/Cargo.lock index dfa2b742f..b1e2d5683 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2994,7 +2994,6 @@ version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f" dependencies = [ - "cc", "pkg-config", "vcpkg", ] diff --git a/Cargo.toml b/Cargo.toml index 650656d89..25b2882d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -213,7 +213,7 @@ nu-protocol = { path = "./crates/nu-protocol", version = "0.104.1" } nu-std = { path = "./crates/nu-std", version = "0.104.1" } nu-system = { path = "./crates/nu-system", version = "0.104.1" } nu-utils = { path = "./crates/nu-utils", version = "0.104.1" } -reedline = { workspace = true, features = ["bashisms", "sqlite"] } +reedline = { workspace = true, features = ["bashisms", "sqlite-dynlib"] } crossterm = { workspace = true } ctrlc = { workspace = true } diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index 607bc5af9..fd6b0b82b 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -29,7 +29,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.104.1", features = ["os"] nu-utils = { path = "../nu-utils", version = "0.104.1" } nu-color-config = { path = "../nu-color-config", version = "0.104.1" } nu-ansi-term = { workspace = true } -reedline = { workspace = true, features = ["bashisms", "sqlite"] } +reedline = { workspace = true, features = ["bashisms", "sqlite-dynlib"] } chrono = { default-features = false, features = ["std"], workspace = true } crossterm = { workspace = true } diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index 28858e2a8..7f5570266 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -87,7 +87,6 @@ getrandom = { workspace = true, optional = true } rayon = { workspace = true } roxmltree = { workspace = true } rusqlite = { workspace = true, features = [ - "bundled", "backup", "chrono", ], optional = true }