You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2022/05/30 15:57:37 UTC

[arrow-datafusion] branch master updated: Prune unused dependencies from datafusion-proto (#2651)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 3a313c9d2 Prune unused dependencies from datafusion-proto (#2651)
3a313c9d2 is described below

commit 3a313c9d2bb04f104dcd3664851bb22f6b130cd8
Author: Raphael Taylor-Davies <17...@users.noreply.github.com>
AuthorDate: Mon May 30 16:57:32 2022 +0100

    Prune unused dependencies from datafusion-proto (#2651)
---
 datafusion/proto/Cargo.toml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/datafusion/proto/Cargo.toml b/datafusion/proto/Cargo.toml
index afb9f7c5a..e773bd55f 100644
--- a/datafusion/proto/Cargo.toml
+++ b/datafusion/proto/Cargo.toml
@@ -36,16 +36,15 @@ path = "src/lib.rs"
 
 [dependencies]
 arrow = { version = "14.0.0" }
-async-trait = "0.1"
 datafusion = { path = "../core", version = "8.0.0" }
 datafusion-common = { path = "../common", version = "8.0.0" }
-datafusion-data-access = { path = "../data-access", version = "8.0.0" }
 datafusion-expr = { path = "../expr", version = "8.0.0" }
 prost = "0.10"
-tokio = "1.18"
+
 
 [dev-dependencies]
 doc-comment = "0.3"
+tokio = "1.18"
 
 [build-dependencies]
 tonic-build = { version = "0.7" }