Skip to content

Commit 15b497b

Browse files
committed
Auto merge of #1792 - steveklabnik:gh26482, r=alexcrichton
In addition, clean up these docs a little. Addresses part of rust-lang/rust#26482
2 parents 5f4c188 + bc3ccf3 commit 15b497b

File tree

1 file changed

+21
-15
lines changed

1 file changed

+21
-15
lines changed

src/doc/crates-io.md

+21-15
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,21 @@ glob = "0.0.3"
3131
num = "0.0.4"
3232
```
3333

34-
The string value for each key in this table is a [semver](http://semver.org/)
35-
version requirement. The exact syntax can be found in the
36-
[rust-lang/semver](https://github.com/rust-lang/semver) repository, and many of
37-
the requirement strings can also be found documented [with
38-
npm](https://www.npmjs.org/doc/misc/semver.html).
34+
The string value for each key in this table is a [semver][semver] version
35+
requirement.
3936

40-
**Caret requirements** allow SemVer compatible updates to a specified version,
41-
`0.1` and `0.2` are not considered compatible, but `1.0` and `1.1` are for
42-
example. If no operator is specified, this is the default requirement (e.g.
43-
`1.3` is the same as `^1.3`).
37+
[semver]: http://doc.rust-lang.org/semver/semver/#requirements
4438

45-
`0.0.x` is not considered compatible with any other version.
46-
Missing minor and patch versions are desugared to `0` but allow flexibility for
47-
that value.
39+
**Caret requirements** allow SemVer compatible updates to a specified version.
40+
41+
`^1.2.3` is an example of a caret requirement.
42+
43+
When considering ‘compatible’ versions, `0.1` and `0.2` are not considered
44+
compatible, but `1.0` and `1.1` are for example. If no operator is specified,
45+
this is the default requirement (e.g. `1.3` is the same as `^1.3`).
46+
47+
`0.0.x` is not considered compatible with any other version. Missing minor and
48+
patch versions are desugared to `0` but allow flexibility for that value.
4849

4950
```notrust
5051
^1.2.3 := >=1.2.3 <2.0.0
@@ -54,16 +55,19 @@ that value.
5455
^0 := >=0.0.0 <1.0.0
5556
```
5657

57-
**Tilde requirements** specify a minimal version with some updates:
58+
**Tilde requirements** specify a minimal version with some ability to update.
59+
60+
`~1.2.3` is an example of a tilde requirement.
5861

5962
```notrust
6063
~1.2.3 := >=1.2.3 <1.3.0
6164
~1.2 := >=1.2.0 <1.3.0
6265
~1 := >=1.0.0 <2.0.0
6366
```
6467

65-
**Wildcard requirements** allows parsing of version requirements of the formats
66-
`*`, `x.*` and `x.y.*`.
68+
**Wildcard requirements** allow for any version where the wildcard is positioned.
69+
70+
`*`, `1.*` and `1.2.*` are examples of wildcard requirements.
6771

6872
```notrust
6973
* := >=0.0.0
@@ -74,6 +78,8 @@ that value.
7478
**Inequality requirements** allow manually specifying a version range or an
7579
exact version to depend on.
7680

81+
Here are some examples of wildcard requirements:
82+
7783
```notrust
7884
>= 1.2.0
7985
> 1

0 commit comments

Comments
 (0)