Auto merge of #26248 - servo:dependabot/cargo/smallvec-1.2.0, r=jdm

Bump smallvec from 0.6.10 to 1.2.0

Bumps [smallvec](https://github.com/servo/rust-smallvec) from 0.6.10 to 1.2.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/servo/rust-smallvec/releases">smallvec's releases</a>.</em></p>
<blockquote>
<h2>v1.2.0</h2>
<ul>
<li><code>IntoIter</code> now implements <code>Debug</code> (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/196">#196</a>).</li>
<li><code>smallvec!</code> macro is now easier to use in <code>no_std</code> contexts where the <code>vec!</code> macro isn't automatically imported (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/198">#198</a>).</li>
</ul>
<h2>v1.1.0</h2>
<ul>
<li>Added new method <code>SmallVec::into_boxed_slice</code> (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/190">#190</a>).</li>
<li>Added new methods <code>IntoIter::as_slice</code> and <code>as_mut_slice</code> (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/182">#182</a>).</li>
<li><code>IntoIter</code> now implements <code>Clone</code> (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/192">#192</a>).</li>
<li>Improved documentation and testing (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/186">#186</a>, <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/189">#189</a>, <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/193">#193</a>).</li>
<li>Minor code cleanups (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/176">#176</a>).</li>
</ul>
<h2>v1.0.0</h2>
<ul>
<li>Requires Rust 1.36 or later.</li>
<li>[breaking change] Use <code>MaybeUninit</code> to avoid possible undefined behavior (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/162">#162</a>, <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/170">#170</a>).</li>
<li>[breaking change] The <code>drain</code> method now takes a range argument, just like the standard <code>Vec::drain</code> (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/145">#145</a>).</li>
<li>[breaking change] Remove the <code>unreachable</code> function and replace it with the new standard <code>unreachable_unchecked</code> function (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/164">#164</a>).</li>
<li>[breaking change] Use <code>no_std</code> by default. This crate depends only on <code>core</code> and <code>alloc</code> by default. If the optional <code>write</code> feature is enabled then it depends on <code>std</code> so that <code>SmallVec&lt;[u8;_]&gt;</code> can implement the <code>std::io::Write</code> trait (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/173">#173</a>).</li>
<li>[breaking change] Remove the deprecated <code>VecLike</code> trait (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/165">#165</a>).</li>
<li>Add support for 96-element small vectors, <code>SmallVec&lt;[T; 96]&gt;</code> (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/163">#163</a>).</li>
<li>Iterators now implement <code>FusedIterator</code> (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/172">#172</a>).</li>
<li>Indexing now uses the standard <code>SliceIndex</code> trait (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/166">#166</a>).</li>
<li>Add automatic fuzz testing and MIRI testing (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/168">#168</a>, <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/162">#162</a>).</li>
<li>Update syntax and formatting to Rust 2018 standard (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/174">#174</a>, <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/167">#167</a>).</li>
</ul>
<h2>v0.6.13</h2>
<ul>
<li>Use the <code>maybe-unit</code> crate in place of soon-to-be-deprecated <code>std::mem::uninitialized</code> (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/180">#180</a>). When built with Rust 1.36 or later, this fixes a source of undefined behavior. It also fixes deprecation warnings in Rust 1.39 and later, and test failures when run in MIRI. In Rust 1.35 and earlier it provides some safety improvements but does not completely eliminate undefined behavior. (However, we are not aware of any cases where the undefined behavior causes bugs in practice in those toolchains.)</li>
</ul>
<h2>v0.6.12</h2>
<ul>
<li>Move code using <code>default fn</code> into its own module (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/161">#161</a>).</li>
</ul>
<h2>v0.6.11</h2>
<ul>
<li>The unstable <code>alloc</code> feature is no longer needed.  This crate can now build with the <code>std</code> feature disabled on stable Rust 1.36 or later (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/159">#159</a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="08b82495c0"><code>08b8249</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/199">#199</a> - mbrubeck:bump, r=emilio</li>
<li><a href="04d54bd9ca"><code>04d54bd</code></a> Version 1.2.0</li>
<li><a href="ea0dbc89c5"><code>ea0dbc8</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/198">#198</a> - mbrubeck:macro, r=jdm</li>
<li><a href="74e9319b47"><code>74e9319</code></a> Use full path to vec! in smallvec! macro</li>
<li><a href="6e61239a2a"><code>6e61239</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/196">#196</a> - Nemo157:intoiter-debug, r=mbrubeck</li>
<li><a href="a4ed1b854f"><code>a4ed1b8</code></a> impl Debug for IntoIter</li>
<li><a href="34d7b8d8e2"><code>34d7b8d</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/193">#193</a> - mbrubeck:bump, r=emilio</li>
<li><a href="436dedbd50"><code>436dedb</code></a> Version 1.1.0</li>
<li><a href="19048d5270"><code>19048d5</code></a> Add a simple example to the README</li>
<li><a href="941d6aae0f"><code>941d6aa</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/192">#192</a> - L0uisc:clone-into-iter, r=mbrubeck</li>
<li>Additional commits viewable in <a href="https://github.com/servo/rust-smallvec/compare/v0.6.10...v1.2.0">compare view</a></li>
</ul>
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=smallvec&package-manager=cargo&previous-version=0.6.10&new-version=1.2.0)](https://dependabot.com/compatibility-score/?dependency-name=smallvec&package-manager=cargo&previous-version=0.6.10&new-version=1.2.0)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

</details>
This commit is contained in:
bors-servo 2020-04-21 21:21:59 -04:00 committed by GitHub
commit 0901e53dbc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 20 deletions

39
Cargo.lock generated
View file

@ -1009,7 +1009,7 @@ dependencies = [
"proc-macro2 1.0.1",
"quote 1.0.2",
"serde",
"smallvec 0.6.10",
"smallvec 0.6.13",
"syn",
]
@ -1779,7 +1779,7 @@ dependencies = [
"servo_arc",
"servo_atoms",
"servo_url",
"smallvec 0.6.10",
"smallvec 0.6.13",
"style",
"time",
"truetype",
@ -1816,7 +1816,7 @@ dependencies = [
"parking_lot",
"range-alloc",
"raw-window-handle",
"smallvec 0.6.10",
"smallvec 0.6.13",
"spirv_cross",
"winapi",
"wio",
@ -1835,7 +1835,7 @@ dependencies = [
"log",
"range-alloc",
"raw-window-handle",
"smallvec 0.6.10",
"smallvec 0.6.13",
"spirv_cross",
"winapi",
]
@ -1872,7 +1872,7 @@ dependencies = [
"parking_lot",
"range-alloc",
"raw-window-handle",
"smallvec 0.6.10",
"smallvec 0.6.13",
"spirv_cross",
"storage-map",
]
@ -1892,7 +1892,7 @@ dependencies = [
"log",
"objc",
"raw-window-handle",
"smallvec 0.6.10",
"smallvec 0.6.13",
"winapi",
"x11",
]
@ -1905,7 +1905,7 @@ checksum = "7c88981665c780447bb08eb099e1ded330754a7246719bab927ee4a949c0ba7f"
dependencies = [
"bitflags",
"raw-window-handle",
"smallvec 0.6.10",
"smallvec 0.6.13",
]
[[package]]
@ -2810,7 +2810,7 @@ dependencies = [
"servo_geometry",
"servo_url",
"size_of_test",
"smallvec 0.6.10",
"smallvec 0.6.13",
"style",
"style_traits",
"unicode-bidi",
@ -3050,7 +3050,7 @@ dependencies = [
"log",
"servo-egl",
"simpleservo",
"smallvec 0.6.10",
"smallvec 1.2.0",
"webxr",
"webxr-api",
]
@ -3909,7 +3909,7 @@ dependencies = [
"libc",
"redox_syscall",
"rustc_version",
"smallvec 0.6.10",
"smallvec 0.6.13",
"winapi",
]
@ -4441,7 +4441,7 @@ dependencies = [
"gfx-hal",
"log",
"relevant",
"smallvec 0.6.10",
"smallvec 0.6.13",
]
[[package]]
@ -4456,7 +4456,7 @@ dependencies = [
"log",
"relevant",
"slab",
"smallvec 0.6.10",
"smallvec 0.6.13",
]
[[package]]
@ -4627,7 +4627,7 @@ dependencies = [
"servo_geometry",
"servo_rand",
"servo_url",
"smallvec 0.6.10",
"smallvec 0.6.13",
"sparkle",
"style",
"style_traits",
@ -4726,7 +4726,7 @@ dependencies = [
"serde",
"servo_atoms",
"servo_url",
"smallvec 0.6.10",
"smallvec 0.6.13",
"style_traits",
"time",
"url",
@ -4944,7 +4944,7 @@ dependencies = [
"servo-media-player",
"servo-media-traits",
"servo_media_derive",
"smallvec 0.6.10",
"smallvec 0.6.13",
"speexdsp-resampler",
]
@ -5317,10 +5317,11 @@ checksum = "1764fe2b30ee783bfe3b9b37b2649d8d590b3148bb12e0079715d4d5c673562e"
[[package]]
name = "smallvec"
version = "0.6.10"
version = "0.6.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7"
checksum = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6"
dependencies = [
"maybe-uninit",
"serde",
]
@ -6365,7 +6366,7 @@ dependencies = [
"malloc_size_of",
"serde",
"servo_config",
"smallvec 0.6.10",
"smallvec 0.6.13",
"wgpu-core",
]
@ -6400,7 +6401,7 @@ dependencies = [
"serde",
"serde_json",
"sha2",
"smallvec 0.6.10",
"smallvec 0.6.13",
"svg_fmt",
"thread_profiler",
"time",

View file

@ -25,5 +25,5 @@ webxr = { git = "https://github.com/servo/webxr", features = ["ipc", "magicleap"
libc = "0.2"
log = "0.4"
servo-egl = "0.2"
smallvec = "0.6"
smallvec = "1.2"