@@ -31,20 +31,21 @@ glob = "0.0.3"
31
31
num = " 0.0.4"
32
32
```
33
33
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.
39
36
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
44
38
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.
48
49
49
50
``` notrust
50
51
^1.2.3 := >=1.2.3 <2.0.0
@@ -54,16 +55,19 @@ that value.
54
55
^0 := >=0.0.0 <1.0.0
55
56
```
56
57
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.
58
61
59
62
``` notrust
60
63
~1.2.3 := >=1.2.3 <1.3.0
61
64
~1.2 := >=1.2.0 <1.3.0
62
65
~1 := >=1.0.0 <2.0.0
63
66
```
64
67
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.
67
71
68
72
``` notrust
69
73
* := >=0.0.0
@@ -74,6 +78,8 @@ that value.
74
78
** Inequality requirements** allow manually specifying a version range or an
75
79
exact version to depend on.
76
80
81
+ Here are some examples of wildcard requirements:
82
+
77
83
``` notrust
78
84
>= 1.2.0
79
85
> 1
0 commit comments