Nit: Selecting direct minimal versions flag is -Zdirect-minimal-versions (#16)

This commit is contained in:
Mathias Pius 2023-11-11 15:01:33 +01:00 committed by GitHub
parent bfee1175f6
commit 3d6ab95662
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,8 +52,8 @@ jobs:
#
# This particular check can be difficult to get to succeed as often transitive dependencies may
# be incorrectly specified (e.g., a dependency specifies 1.0 but really requires 1.1.5). There
# is an alternative flag available -Zminimal-direct that uses the minimal versions for direct
# dependencies of this crate, while selecting the maximal versions for the transitive
# is an alternative flag available -Zdirect-minimal-versions that uses the minimal versions for
# direct dependencies of this crate, while selecting the maximal versions for the transitive
# dependencies. Alternatively, you can add a line in your Cargo.toml to artificially increase
# the minimal dependency, which you do with e.g.:
# ```toml