Skip to content

Commit

Permalink
Issue #1876: Explicitly declare the used features for each dependency…
Browse files Browse the repository at this point in the history
… in integration_testing (#1898)

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
  • Loading branch information
martin-g committed Jun 19, 2022
1 parent 1f65791 commit 7f0855d
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions integration-testing/Cargo.toml
Expand Up @@ -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 }

0 comments on commit 7f0855d

Please sign in to comment.