@@ -91,7 +91,7 @@ a keyword. [crates.io] imposes even more restrictions, such as:
9191
9292### The ` version ` field
9393
94- The ` version ` field is formatted according to the [ SemVer ] specification:
94+ The ` version ` field is formatted according to the [ Semantic Versioning ] specification:
9595
9696Versions must have three numeric parts,
9797the major version, the minor version, and the patch version.
@@ -105,18 +105,18 @@ For example, `1.0.0-alpha.11` is higher than `1.0.0-alpha.4`.
105105A metadata part can be added after a plus, such as ` 1.0.0+21AF26D3 ` .
106106This is for informational purposes only and is generally ignored by Cargo.
107107
108- Cargo bakes in the concept of [ Semantic Versioning] ( https://semver.org/ ) ,
109- so versions are considered considered [ compatible] ( semver.md ) if their left-most non-zero major/minor/patch component is the same.
110- See the [ Resolver] chapter for more information on how Cargo uses versions to
111- resolve dependencies.
108+ Cargo bakes in the concept of [ Semantic Versioning] , so versions are considered
109+ [ compatible] if their left-most non-zero major/minor/patch component is the
110+ same. See the [ Resolver] chapter for more information on how Cargo uses
111+ versions to resolve dependencies.
112112
113113This field is optional and defaults to ` 0.0.0 ` . The field is required for publishing packages.
114114
115115> ** MSRV:** Before 1.75, this field was required
116116
117- [ SemVer ] : https://semver.org
117+ [ Semantic Versioning ] : https://semver.org
118118[ Resolver ] : resolver.md
119- [ SemVer compatibility ] : semver.md
119+ [ compatible ] : semver.md
120120
121121### The ` authors ` field
122122
@@ -612,8 +612,6 @@ The `[profile]` tables provide a way to customize compiler settings such as
612612optimizations and debug settings. See [ the Profiles chapter] ( profiles.md ) for
613613more detail.
614614
615-
616-
617615[ `cargo init` ] : ../commands/cargo-init.md
618616[ `cargo new` ] : ../commands/cargo-new.md
619617[ `cargo package` ] : ../commands/cargo-package.md
0 commit comments