From 77ed734839868eac5c61cf61ff62d66d0f039491 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 18:05:35 +0000 Subject: [PATCH] build: bump rusqlite from 0.29.0 to 0.30.0 Bumps [rusqlite](https://github.com/rusqlite/rusqlite) from 0.29.0 to 0.30.0. - [Release notes](https://github.com/rusqlite/rusqlite/releases) - [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md) - [Commits](https://github.com/rusqlite/rusqlite/compare/v0.29.0...v0.30.0) --- updated-dependencies: - dependency-name: rusqlite dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ implementations/rust/ockam/ockam_abac/Cargo.toml | 2 +- implementations/rust/ockam/ockam_identity/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eeae460edbc..85cd2e4d6ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2155,9 +2155,9 @@ dependencies = [ [[package]] name = "fallible-iterator" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" +checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" [[package]] name = "fallible-streaming-iterator" @@ -3098,9 +3098,9 @@ dependencies = [ [[package]] name = "libsqlite3-sys" -version = "0.26.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" +checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" dependencies = [ "pkg-config", "vcpkg", @@ -4941,9 +4941,9 @@ checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316" [[package]] name = "rusqlite" -version = "0.29.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "549b9d036d571d42e6e85d1c1425e2ac83491075078ca9a15be021c56b1641f2" +checksum = "a78046161564f5e7cd9008aff3b2990b3850dc8e0349119b98e8f251e099f24d" dependencies = [ "bitflags 2.4.0", "fallible-iterator", diff --git a/implementations/rust/ockam/ockam_abac/Cargo.toml b/implementations/rust/ockam/ockam_abac/Cargo.toml index 7e8be572aaa..13a7e95ac66 100644 --- a/implementations/rust/ockam/ockam_abac/Cargo.toml +++ b/implementations/rust/ockam/ockam_abac/Cargo.toml @@ -42,7 +42,7 @@ ockam_identity = { version = "0.93.0", path = "../ockam_identity", default-featu once_cell = { version = "1.18.0", default-features = false, features = ["alloc"] } # optional: regex = { version = "1.10.2", default-features = false, optional = true } -rusqlite = { version = "0.29.0", optional = true } +rusqlite = { version = "0.30.0", optional = true } rustyline = { version = "12.0.0", optional = true } rustyline-derive = { version = "0.9.0", optional = true } str-buf = "3.0.1" diff --git a/implementations/rust/ockam/ockam_identity/Cargo.toml b/implementations/rust/ockam/ockam_identity/Cargo.toml index 0773e870564..a9cbdaa1f05 100644 --- a/implementations/rust/ockam/ockam_identity/Cargo.toml +++ b/implementations/rust/ockam/ockam_identity/Cargo.toml @@ -88,7 +88,7 @@ ockam_macros = { path = "../ockam_macros", version = "^0.32.0", default-features ockam_node = { path = "../ockam_node", version = "^0.98.0", default-features = false } ockam_vault = { path = "../ockam_vault", version = "^0.91.0", default-features = false, optional = true } rand = { version = "0.8", default-features = false } -rusqlite = { version = "0.29.0", optional = true } +rusqlite = { version = "0.30.0", optional = true } serde = { version = "1.0", default-features = false, features = ["derive"] } serde-big-array = "0.5" serde_bare = { version = "0.5.0", default-features = false, features = ["alloc"] }