diff --git a/docs/src/components/SiteTitle.astro b/docs/src/components/SiteTitle.astro index 4ee93bc..c3da7d5 100644 --- a/docs/src/components/SiteTitle.astro +++ b/docs/src/components/SiteTitle.astro @@ -3,12 +3,7 @@ href="https://pesde.daimond113.com/" class="flex text-[var(--sl-color-text-accent)] hover:opacity-80" > - + pesde - / + / docsbar" = "bar" +``` + +This is the same as if you had written: + +```toml title="pesde.toml" +[dependencies] +foo = { name = "acme/foo", version = "^1.0.0" } +bar = { name = "acme/bar", version = "^2.0.0" } + +[overrides] +"foo>bar" = { name = "acme/bar", version = "^2.0.0" } +``` + You can learn more about the syntax for dependency overrides in the [reference](/reference/manifest#overrides). diff --git a/docs/src/content/docs/reference/manifest.mdx b/docs/src/content/docs/reference/manifest.mdx index 528f4e1..2496771 100644 --- a/docs/src/content/docs/reference/manifest.mdx +++ b/docs/src/content/docs/reference/manifest.mdx @@ -276,10 +276,27 @@ version `1.0.0`, and the `bar` and `baz` dependencies of the `foo` package with version `2.0.0`. Each key in the overrides table is a comma-separated list of package paths. The -path is a list of package names separated by `>`. For example, `foo>bar>baz` +path is a list of aliases separated by `>`. For example, `foo>bar>baz` refers to the `baz` dependency of the `bar` package, which is a dependency of the `foo` package. +The value of an override entry can be either a specifier or an alias. If it is an +alias (a string), it will be equivalent to putting the specifier of the dependency +under that alias. For example, the following two overrides are equivalent: + +```toml +[dependencies] +bar = { name = "acme/bar", version = "2.0.0" } + +[overrides] +"foo>bar" = "bar" +``` + +```toml +[overrides] +"foo>bar" = { name = "acme/bar", version = "2.0.0" } +``` +