From b8c24ab38c883d0e9c8276c1d8929f04a6613c67 Mon Sep 17 00:00:00 2001 From: Marli Frost Date: Tue, 8 Feb 2022 00:46:43 +0000 Subject: [PATCH] update bytes crate to v1 (to match tokio) --- Cargo.lock | 10 ++-------- feather/protocol/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0b4381092..8a06f1039 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -291,12 +291,6 @@ version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" -[[package]] -name = "bytes" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38" - [[package]] name = "bytes" version = "1.1.0" @@ -913,7 +907,7 @@ dependencies = [ "anyhow", "bytemuck", "byteorder", - "bytes 0.5.6", + "bytes", "cfb8", "feather-base", "feather-blocks", @@ -2994,7 +2988,7 @@ version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fbbf1c778ec206785635ce8ad57fe52b3009ae9e0c9f574a728f3049d3e55838" dependencies = [ - "bytes 1.1.0", + "bytes", "libc", "memchr", "mio", diff --git a/feather/protocol/Cargo.toml b/feather/protocol/Cargo.toml index d919d83b4..ea1298f2a 100644 --- a/feather/protocol/Cargo.toml +++ b/feather/protocol/Cargo.toml @@ -11,7 +11,7 @@ base = { path = "../base", package = "feather-base" } blocks = { path = "../blocks", package = "feather-blocks" } bytemuck = "1" byteorder = "1" -bytes = "0.5" +bytes = "1.1.0" cfb8 = "0.7" flate2 = "1"