From 8d09e506bb8996700cd4182706889434673bc49b Mon Sep 17 00:00:00 2001 From: Max Burke Date: Tue, 19 Jan 2021 14:16:11 -0800 Subject: [PATCH] [ARROW-11322] Re-opening `memory` module as public --- rust/arrow/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/arrow/src/lib.rs b/rust/arrow/src/lib.rs index 5d14ab59611..170997dc5f6 100644 --- a/rust/arrow/src/lib.rs +++ b/rust/arrow/src/lib.rs @@ -147,7 +147,7 @@ pub mod error; pub mod ffi; pub mod ipc; pub mod json; -mod memory; +pub mod memory; pub mod record_batch; pub mod tensor; pub mod util;