From 3d22a7c6341b53f3af7785661b26edb4bb7e05bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 31 Oct 2024 02:39:58 +0000 Subject: [PATCH] chore: bump savvy from 0.7.2 to 0.8.0 in /src/rust Bumps [savvy](https://github.com/yutannihilation/savvy) from 0.7.2 to 0.8.0. - [Release notes](https://github.com/yutannihilation/savvy/releases) - [Changelog](https://github.com/yutannihilation/savvy/blob/main/CHANGELOG.md) - [Commits](https://github.com/yutannihilation/savvy/compare/v0.7.2...v0.8.0) --- updated-dependencies: - dependency-name: savvy dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/rust/Cargo.lock | 16 ++++++++-------- src/rust/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/rust/Cargo.lock b/src/rust/Cargo.lock index 1baf76c..2c02bc2 100644 --- a/src/rust/Cargo.lock +++ b/src/rust/Cargo.lock @@ -488,9 +488,9 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "savvy" -version = "0.7.2" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9901422223436007d21f5448a8125b05c2243ede8f48fe5701349ff6c59a43ad" +checksum = "2108f6d749b271322de39766a49f4d3558e07bb8917b967c1e0c4b8283c85697" dependencies = [ "cc", "once_cell", @@ -501,9 +501,9 @@ dependencies = [ [[package]] name = "savvy-bindgen" -version = "0.7.2" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24dfb64e9d4c9ba228c319c681268fcca9ed2bf6bbfdbe12e9b6f33208df3974" +checksum = "35f20136fec51032d5dee6c482075bd442a040a1c30eda6f63ec7da3f8830cbc" dependencies = [ "proc-macro2", "quote", @@ -512,15 +512,15 @@ dependencies = [ [[package]] name = "savvy-ffi" -version = "0.7.2" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f220d5024651069932f5ce857b128d11510a1ba197672cc208383771de51a334" +checksum = "1874b7fd7f5aae4f96ec9511cf44f6f2247b710041e8a1c14d4ec1b2e3775427" [[package]] name = "savvy-macro" -version = "0.7.2" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2545c3adb18a7ce7adae4242deeda25e9fccea58f28bc389338caa0e98853182" +checksum = "ac0ab67d3d56c2861dfb05877c6345dda7e25dc710d4af3a818b1458e5d4f304" dependencies = [ "proc-macro2", "quote", diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml index 27ce52e..d001e4a 100644 --- a/src/rust/Cargo.toml +++ b/src/rust/Cargo.toml @@ -10,7 +10,7 @@ crate-type = ['staticlib'] name = "prqlr" [dependencies] -savvy = "0.7.2" +savvy = "0.8.0" # prqlc= { version = "0.13.0", default-features = false } # prqlc 0.13.0 is not compatible with Rust 1.69.0, so a slightly modified version is installed # See https://github.com/PRQL/prql/pull/4916