From 783dae3f6e8c8951bb7cd8fa80ee6c766486b387 Mon Sep 17 00:00:00 2001 From: Matthijs Brobbel Date: Mon, 23 Sep 2024 12:29:11 +0200 Subject: [PATCH] chore(deps,cargo): revert bump once_cell from 1.19.0 to 1.20.0 in the cargo group (#228) Reverts substrait-io/substrait-rs#226. The release was yanked. --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 10e7b41..4784f39 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -286,9 +286,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.20.0" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33ea5043e58958ee56f3e15a90aee535795cd7dfd319846288d93c5b57d85cbe" +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "pbjson" diff --git a/Cargo.toml b/Cargo.toml index 52778cb..2ea162e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,7 +34,7 @@ serde = ["dep:pbjson", "dep:pbjson-build", "dep:pbjson-types"] [dependencies] hex = { version = "0.4.3", optional = true } -once_cell = { version = "1.20.0", optional = true } +once_cell = { version = "1.19.0", optional = true } pbjson = { version = "0.7.0", optional = true } pbjson-types = { version = "0.7.0", optional = true } prost = "0.13.2"