You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Minimum version of the binary that is expected to work. This is just for printing a nice error
4
+
# message when someone tries to use an older version.
5
+
binary: 0.13.2
6
+
7
+
# The examples in this file assume crate `A` to have a dependency on crate `B`.
8
+
workflows:
9
+
check:
10
+
- [
11
+
'lint',
12
+
# Check that `A` activates the features of `B`.
13
+
'propagate-feature',
14
+
# These are the features to check:
15
+
'--features=try-runtime,runtime-benchmarks,std',
16
+
# Do not try to add a new section into `[features]` of `A` only because `B` expose that feature. There are edge-cases where this is still needed, but we can add them manually.
17
+
'--left-side-feature-missing=ignore',
18
+
# Ignore the case that `A` it outside of the workspace. Otherwise it will report errors in external dependencies that we have no influence on.
19
+
'--left-side-outside-workspace=ignore',
20
+
# Some features imply that they activate a specific dependency as non-optional. Otherwise the default behaviour with a `?` is used.
0 commit comments