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 4e9ced6  ARROW-8396: [Rust] Removes libc dependency
4e9ced6 is described below

commit 4e9ced6aaafa1188838fc0d6b28b2aade30563b6
Author: Mahmut Bulut <[email protected]>
AuthorDate: Fri Apr 10 13:54:52 2020 -0600

    ARROW-8396: [Rust] Removes libc dependency
    
    Since the allocation has done by std::alloc::*;
    
    Closes #6896 from vertexclique/ARROW-8396-remove-libc-dep
    
    Authored-by: Mahmut Bulut <[email protected]>
    Signed-off-by: Andy Grove <[email protected]>
---
 rust/arrow/Cargo.toml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/rust/arrow/Cargo.toml b/rust/arrow/Cargo.toml
index 3bd945f..7866ffe 100644
--- a/rust/arrow/Cargo.toml
+++ b/rust/arrow/Cargo.toml
@@ -36,7 +36,6 @@ name = "arrow"
 path = "src/lib.rs"
 
 [dependencies]
-libc = "0.2"
 serde = { version = "1.0", features = ["rc"] }
 serde_derive = "1.0"
 serde_json = { version = "1.0", features = ["preserve_order"] }

Reply via email to