From 71a7235b6faf8bc77e82253d492b9e18727aad7c Mon Sep 17 00:00:00 2001 From: Raphael Taylor-Davies Date: Mon, 30 May 2022 16:14:04 +0100 Subject: [PATCH] Prune unused dependencies from datafusion-proto --- 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 afb9f7c5ab18f..e773bd55f8bca 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" }