Skip to content

Commit

Permalink
scylla-cql: fix unit tests with 'serde' feature enabled
Browse files Browse the repository at this point in the history
When running scylla-cql tests separately, serde 'derive' feature is not
set explicitly. This results in failing builds when the feature is enabled.
Builds were not failing earlier due to 'scylla-cql' being used as a dependency
of a crate that sets 'serde/derive' feature.
  • Loading branch information
Anfid committed Jun 15, 2023
1 parent 5aeb080 commit f3c4235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scylla-cql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ num-bigint = "0.3"
chrono = { version = "0.4", default-features = false }
lz4_flex = { version = "0.9.2" }
async-trait = "0.1.57"
serde = { version = "1.0", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }

[dev-dependencies]
criterion = "0.3"
Expand Down

0 comments on commit f3c4235

Please sign in to comment.