You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2019/02/16 16:36:15 UTC

[arrow] branch master updated: ARROW-4586: [Rust] Remove arrow/mod.rs as it is not needed

This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new e1bc0d4  ARROW-4586: [Rust] Remove arrow/mod.rs as it is not needed
e1bc0d4 is described below

commit e1bc0d4bd8377c1782f779a5d37ba3c7f8d3105d
Author: Paddy Horan <pa...@hotmail.com>
AuthorDate: Sat Feb 16 09:36:03 2019 -0700

    ARROW-4586: [Rust] Remove arrow/mod.rs as it is not needed
    
    `mod.rs` is not needed as `lib.rs` imports sub-modules directly.  In fact, it's not compiled at all from what I can see...
    
    Author: Paddy Horan <pa...@hotmail.com>
    
    Closes #3659 from paddyhoran/remove-mod and squashes the following commits:
    
    513eaa4 <Paddy Horan> Removed `arrow/mod.rs`
---
 rust/arrow/src/mod.rs | 28 ----------------------------
 1 file changed, 28 deletions(-)

diff --git a/rust/arrow/src/mod.rs b/rust/arrow/src/mod.rs
deleted file mode 100644
index b9fa43a..0000000
--- a/rust/arrow/src/mod.rs
+++ /dev/null
@@ -1,28 +0,0 @@
-// Licensed to the Apache Software Foundation (ASF) under one
-// or more contributor license agreements.  See the NOTICE file
-// distributed with this work for additional information
-// regarding copyright ownership.  The ASF licenses this file
-// to you under the Apache License, Version 2.0 (the
-// "License"); you may not use this file except in compliance
-// with the License.  You may obtain a copy of the License at
-//
-//   http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing,
-// software distributed under the License is distributed on an
-// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-// KIND, either express or implied.  See the License for the
-// specific language governing permissions and limitations
-// under the License.
-
-pub mod array;
-pub mod array_data;
-pub mod bitmap;
-pub mod buffer;
-pub mod builder;
-pub mod csv;
-pub mod datatypes;
-pub mod error;
-pub mod memory;
-pub mod record_batch;
-pub mod tensor;