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:
52
52
#
53
53
# This particular check can be difficult to get to succeed as often transitive dependencies may
54
54
# 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
57
57
# dependencies. Alternatively, you can add a line in your Cargo.toml to artificially increase
58
58
# the minimal dependency, which you do with e.g.:
59
59
# ```toml
60
60
# # for minimal-versions
61
61
# [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
63
63
# ```
64
64
# The optional = true is necessary in case that dependency isn't otherwise transitively required
65
65
# 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