We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fba5907 commit b020e6eCopy full SHA for b020e6e
Cargo.toml
@@ -24,6 +24,14 @@ members = [
24
"arrow-flight",
25
"integration-testing",
26
]
27
+# Enable the version 2 feature resolver, which avoids unifying features for targets that are not being built
28
+#
29
+# Critically this prevents dev-dependencies from enabling features even when not building a target that
30
+# uses dev-dependencies, e.g. the library crate. This in turn ensures that we can catch invalid feature
31
+# flag combinations that would otherwise only surface in dependent crates
32
33
+# Reference - https://doc.rust-lang.org/nightly/cargo/reference/features.html#feature-resolver-version-2
34
35
resolver = "2"
36
37
# this package is excluded because it requires different compilation flags, thereby significantly changing
0 commit comments