• Home
  • Raw
  • Download

Lines Matching full:mdash

209 /// -  **`=I.J.K`** — exactly the version I.J.K
210 /// - &ensp;**`=I.J`**&emsp;&mdash;&emsp;equivalent to `>=I.J.0, <I.(J+1).0`
211 /// - &ensp;**`=I`**&emsp;&mdash;&emsp;equivalent to `>=I.0.0, <(I+1).0.0`
215 /// - &ensp;**`>I.J`**&emsp;&mdash;&emsp;equivalent to `>=I.(J+1).0`
216 /// - &ensp;**`>I`**&emsp;&mdash;&emsp;equivalent to `>=(I+1).0.0`
220 /// - &ensp;**`>=I.J`**&emsp;&mdash;&emsp;equivalent to `>=I.J.0`
221 /// - &ensp;**`>=I`**&emsp;&mdash;&emsp;equivalent to `>=I.0.0`
225 /// - &ensp;**`<I.J`**&emsp;&mdash;&emsp;equivalent to `<I.J.0`
226 /// - &ensp;**`<I`**&emsp;&mdash;&emsp;equivalent to `<I.0.0`
230 /// - &ensp;**`<=I.J`**&emsp;&mdash;&emsp;equivalent to `<I.(J+1).0`
231 /// - &ensp;**`<=I`**&emsp;&mdash;&emsp;equivalent to `<(I+1).0.0`
235 /// - &ensp;**`~I.J.K`**&emsp;&mdash;&emsp;equivalent to `>=I.J.K, <I.(J+1).0`
236 /// - &ensp;**`~I.J`**&emsp;&mdash;&emsp;equivalent to `=I.J`
237 /// - &ensp;**`~I`**&emsp;&mdash;&emsp;equivalent to `=I`
241 /// - &ensp;**`^I.J.K`**&ensp;(for I\>0)&emsp;&mdash;&emsp;equivalent to `>=I.J.K, <(I+1).0.0`
242 /// - &ensp;**`^0.J.K`**&ensp;(for J\>0)&emsp;&mdash;&emsp;equivalent to `>=0.J.K, <0.(J+1).0`
243 /// - &ensp;**`^0.0.K`**&emsp;&mdash;&emsp;equivalent to `=0.0.K`
244 /// - &ensp;**`^I.J`**&ensp;(for I\>0 or J\>0)&emsp;&mdash;&emsp;equivalent to `^I.J.0`
245 /// - &ensp;**`^0.0`**&emsp;&mdash;&emsp;equivalent to `=0.0`
246 /// - &ensp;**`^I`**&emsp;&mdash;&emsp;equivalent to `=I`
249 /// - &ensp;**`I.J.*`**&emsp;&mdash;&emsp;equivalent to `=I.J`
250 /// - &ensp;**`I.*`**&ensp;or&ensp;**`I.*.*`**&emsp;&mdash;&emsp;equivalent to `=I`
275 /// - **[mio]** <code>0.7.0-<b>alpha.1</b></code> &mdash; the most common style
279 /// &mdash; this crate makes a distinction between betas and release
282 /// - **[sassers]** <code>0.11.0-<b>shitshow</b></code> &mdash; ???.
284 /// - **[atomic-utils]** <code>0.0.0-<b>reserved</b></code> &mdash; a squatted
329 /// - **[libgit2-sys]** <code>0.12.20+<b>1.1.0</b></code> &mdash; for this
333 /// - **[mashup]** <code>0.1.13+<b>deprecated</b></code> &mdash; just the word
338 /// - **[google-bigquery2]** <code>2.0.4+<b>20210327</b></code> &mdash; this
342 /// - **[fbthrift-git]** <code>0.0.6+<b>c7fcc0e</b></code> &mdash; this crate is
414 /// - `1.0` &mdash; too few numeric components. A SemVer version must have
419 /// - `1.0.01` &mdash; a numeric component has a leading zero.
421 /// - `1.0.unknown` &mdash; unexpected character in one of the components.
423 /// - `1.0.0-` or `1.0.0+` &mdash; the pre-release or build metadata are
426 /// - `1.0.0-alpha_123` &mdash; pre-release or build metadata have something
430 /// - `23456789999999999999.0.0` &mdash; overflow of a u64.
508 /// - `>a.b` &mdash; unexpected characters in the partial version.
510 /// - `@1.0.0` &mdash; unrecognized comparison operator.
512 /// - `^1.0.0, ` &mdash; unexpected end of input.
514 /// - `>=1.0 <2.0` &mdash; missing comma between comparators.
516 /// - `*.*` &mdash; unsupported wildcard syntax.