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