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-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 7f0855dac Issue #1876: Explicitly declare the used features for each
dependency in integration_testing (#1898)
7f0855dac is described below
commit 7f0855dac10a6e70b448ccac0d3f51e865e7bf6d
Author: Martin Grigorov <[email protected]>
AuthorDate: Sun Jun 19 10:58:31 2022 +0300
Issue #1876: Explicitly declare the used features for each dependency in
integration_testing (#1898)
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
---
integration-testing/Cargo.toml | 26 +++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/integration-testing/Cargo.toml b/integration-testing/Cargo.toml
index 57b521112..7bd62d6bb 100644
--- a/integration-testing/Cargo.toml
+++ b/integration-testing/Cargo.toml
@@ -31,16 +31,16 @@ rust-version = "1.57"
logging = ["tracing-subscriber"]
[dependencies]
-arrow = { path = "../arrow" }
-arrow-flight = { path = "../arrow-flight" }
-async-trait = "0.1.41"
-clap = { version = "~3.1", features = ["derive", "env"] }
-futures = "0.3"
-hex = "0.4"
-prost = "0.10"
-serde = { version = "1.0", features = ["rc"] }
-serde_derive = "1.0"
-serde_json = { version = "1.0", features = ["preserve_order"] }
-tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] }
-tonic = "0.7"
-tracing-subscriber = { version = "0.3.1", optional = true }
+arrow = { path = "../arrow", default-features = false, features = [
"test_utils" ] }
+arrow-flight = { path = "../arrow-flight", default-features = false }
+async-trait = { version = "0.1.41", default-features = false }
+clap = { version = "~3.1", default-features = false, features = ["std",
"derive"] }
+futures = { version = "0.3", default-features = false }
+hex = { version = "0.4", default-features = false }
+prost = { version = "0.10", default-features = false }
+serde = { version = "1.0", default-features = false, features = ["rc"] }
+serde_derive = { version = "1.0", default-features = false }
+serde_json = { version = "1.0", default-features = false, features =
["preserve_order"] }
+tokio = { version = "1.0", default-features = false }
+tonic = { version = "0.7", default-features = false }
+tracing-subscriber = { version = "0.3.1", default-features = false, features =
["fmt"], optional = true }