From 09690976d34821dab065f20810fdc62e3b66e07d Mon Sep 17 00:00:00 2001 From: Neville Dipale Date: Fri, 8 Jan 2021 17:42:30 +0200 Subject: [PATCH] ARROW-11167: [Rust] [Parquet] Pin specific parquet-format-rs version --- rust/parquet/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/parquet/Cargo.toml b/rust/parquet/Cargo.toml index 09a87e07511..72b0e9da332 100644 --- a/rust/parquet/Cargo.toml +++ b/rust/parquet/Cargo.toml @@ -29,7 +29,7 @@ build = "build.rs" edition = "2018" [dependencies] -parquet-format = "2.6.1" +parquet-format = "~2.6.1" byteorder = "1" thrift = "0.13" snap = { version = "1.0", optional = true } @@ -40,7 +40,7 @@ zstd = { version = "0.6", optional = true } chrono = "0.4" num-bigint = "0.3" arrow = { path = "../arrow", version = "3.0.0-SNAPSHOT", optional = true } -base64 = { version = "*", optional = true } +base64 = { version = "0.12", optional = true } [dev-dependencies] rand = "0.8"