File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,14 +52,14 @@ jobs:
5252 #
5353 # This particular check can be difficult to get to succeed as often transitive dependencies may
5454 # be incorrectly specified (e.g., a dependency specifies 1.0 but really requires 1.1.5). There
55- # is an alternative flag available -Zminimal-direct that uses the minimal versions for direct
56- # dependencies of this crate, while selecting the maximal versions for the transitive
55+ # is an alternative flag available -Zdirect-minimal-versions that uses the minimal versions for
56+ # direct dependencies of this crate, while selecting the maximal versions for the transitive
5757 # dependencies. Alternatively, you can add a line in your Cargo.toml to artificially increase
5858 # the minimal dependency, which you do with e.g.:
5959 # ```toml
6060 # # for minimal-versions
6161 # [target.'cfg(any())'.dependencies]
62- # openssl = { version = "0.10.55", optional = true } # needed to allow foo to build with -Zminimal-versions
62+ # openssl = { version = "0.10.55", optional = true } # needed to allow foo to build with -Zminimal-versions
6363 # ```
6464 # The optional = true is necessary in case that dependency isn't otherwise transitively required
6565 # by your library, and the target bit is so that this dependency edge never actually affects
You can’t perform that action at this time.
0 commit comments