mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-06 03:40:59 +01:00
docs: correct git specifier docs
This commit is contained in:
parent
241e667bdc
commit
f30e59e4b0
1 changed files with 3 additions and 3 deletions
|
@ -319,7 +319,7 @@ The `[dependencies]` section contains a list of dependencies for the package.
|
||||||
[dependencies]
|
[dependencies]
|
||||||
foo = { name = "acme/foo", version = "1.2.3" }
|
foo = { name = "acme/foo", version = "1.2.3" }
|
||||||
bar = { wally = "acme/bar", version = "2.3.4" }
|
bar = { wally = "acme/bar", version = "2.3.4" }
|
||||||
baz = { git = "acme/baz", rev = "main" }
|
baz = { repo = "acme/baz", rev = "main" }
|
||||||
```
|
```
|
||||||
|
|
||||||
Each key in the dependencies table is the name of the dependency, and the value
|
Each key in the dependencies table is the name of the dependency, and the value
|
||||||
|
@ -361,12 +361,12 @@ foo = { wally = "acme/foo", version = "1.2.3", index = "acme" }
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
foo = { git = "acme/packages", rev = "main", path = "foo" }
|
foo = { repo = "acme/packages", rev = "main", path = "foo" }
|
||||||
```
|
```
|
||||||
|
|
||||||
**Git dependencies** contain the following fields:
|
**Git dependencies** contain the following fields:
|
||||||
|
|
||||||
- `git`: The URL of the Git repository.
|
- `repo`: The URL of the Git repository.
|
||||||
This can either be `<owner>/<name>` for a GitHub repository, or a full URL.
|
This can either be `<owner>/<name>` for a GitHub repository, or a full URL.
|
||||||
- `rev`: The Git revision to install. This can be a branch, tag, or commit hash.
|
- `rev`: The Git revision to install. This can be a branch, tag, or commit hash.
|
||||||
- `path`: The path within the repository to install. If not specified, the root
|
- `path`: The path within the repository to install. If not specified, the root
|
||||||
|
|
Loading…
Add table
Reference in a new issue