diff --git a/README.md b/README.md index 3e5d4a46..4464690d 100644 --- a/README.md +++ b/README.md @@ -218,7 +218,7 @@ Path dependencies are not considered versioned. Either all versions of dependenc mydep: { git: "git@github.com:pulp-platform/common_verification.git", rev: "" } mydep: { git: "git@github.com:pulp-platform/common_verification.git", version: "1.1" } -Git dependencies are automatically checked out and cloned, and are considered for version resolution. The `rev` field can be a git "commit-ish", which essentially is a commit hash, a tag name, or a branch name, where the newest name that starts with the indicated revision is selected. The `version` field can be any of the [semver predicates](https://docs.rs/semver/#requirements), such as a simple version `X.Y.Z` (or `X.Y`), prefixing `^` to only allow that specific version, `~` to limit updates to patches, or defining custom ranges with `>=U.V.W, =U.V.W,