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 parquet_derive_test (#1897)

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
  • Loading branch information
martin-g committed Jun 20, 2022
1 parent ded6316 commit 9b5bc01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions parquet_derive_test/Cargo.toml
Expand Up @@ -29,6 +29,6 @@ publish = false
rust-version = "1.57"

[dependencies]
parquet = { path = "../parquet", version = "16.0.0" }
parquet_derive = { path = "../parquet_derive", version = "16.0.0" }
chrono = "0.4.19"
parquet = { path = "../parquet", version = "16.0.0", default-features = false }
parquet_derive = { path = "../parquet_derive", version = "16.0.0", default-features = false }
chrono = { version="0.4.19", default-features = false, features = [ "clock" ] }

0 comments on commit 9b5bc01

Please sign in to comment.