mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Auto merge of #27195 - servo:dependabot/cargo/smallvec-1.4.1, r=jdm
build(deps): bump smallvec from 1.3.0 to 1.4.1 Bumps [smallvec](https://github.com/servo/rust-smallvec) from 1.3.0 to 1.4.1. <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.4.1</h2> <ul> <li>Don't allocate when the size of the element type is zero. Allocating zero bytes is undefined behavior. (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/228">#228</a>)</li> </ul> <h2>v1.4.0</h2> <ul> <li>Add <code>try_reserve</code>, <code>try_reserve_exact</code>, and <code>try_grow</code> methods (<a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/214">#214</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="5513f4716b
"><code>5513f47</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/228">#228</a> - servo:zero, r=jdm</li> <li><a href="a376b02c8c
"><code>a376b02</code></a> Don’t heap-allocate for zero-size items</li> <li><a href="5f42f5f8e2
"><code>5f42f5f</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/227">#227</a> - SamuelMarks:rustfmt, r=mbrubeck</li> <li><a href="fbd1739753
"><code>fbd1739</code></a> [*.rs] rustfmt</li> <li><a href="7bda9ec4a8
"><code>7bda9ec</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/225">#225</a> - mbrubeck:docs, r=emilio</li> <li><a href="cd1fe7af5c
"><code>cd1fe7a</code></a> Document the optional 'serde' feature</li> <li><a href="ebbd78ad98
"><code>ebbd78a</code></a> Disable unused serde features</li> <li><a href="51f3545956
"><code>51f3545</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/223">#223</a> - Luro02:docs, r=emilio</li> <li><a href="51d8464805
"><code>51d8464</code></a> Link to tracking issues for unstable features</li> <li><a href="006b2e59f3
"><code>006b2e5</code></a> Auto merge of <a href="https://github-redirect.dependabot.com/servo/rust-smallvec/issues/222">#222</a> - mbrubeck:unused_mut, r=emilio</li> <li>Additional commits viewable in <a href="https://github.com/servo/rust-smallvec/compare/v1.3.0...v1.4.1">compare view</a></li> </ul> </details> <br /> [](https://dependabot.com/compatibility-score/?dependency-name=smallvec&package-manager=cargo&previous-version=1.3.0&new-version=1.4.1) 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) --- <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:
commit
0af883b310
2 changed files with 18 additions and 18 deletions
34
Cargo.lock
generated
34
Cargo.lock
generated
|
@ -1031,7 +1031,7 @@ dependencies = [
|
|||
"proc-macro2 1.0.17",
|
||||
"quote 1.0.2",
|
||||
"serde",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
"syn",
|
||||
]
|
||||
|
||||
|
@ -1461,7 +1461,7 @@ name = "fallible"
|
|||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"hashglobe",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -1783,7 +1783,7 @@ dependencies = [
|
|||
"parking_lot 0.10.2",
|
||||
"range-alloc",
|
||||
"raw-window-handle",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
"spirv_cross",
|
||||
"winapi",
|
||||
"wio",
|
||||
|
@ -1802,7 +1802,7 @@ dependencies = [
|
|||
"log",
|
||||
"range-alloc",
|
||||
"raw-window-handle",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
"spirv_cross",
|
||||
"winapi",
|
||||
]
|
||||
|
@ -1839,7 +1839,7 @@ dependencies = [
|
|||
"parking_lot 0.10.2",
|
||||
"range-alloc",
|
||||
"raw-window-handle",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
"spirv_cross",
|
||||
"storage-map",
|
||||
]
|
||||
|
@ -1859,7 +1859,7 @@ dependencies = [
|
|||
"log",
|
||||
"objc",
|
||||
"raw-window-handle",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
"winapi",
|
||||
]
|
||||
|
||||
|
@ -3017,7 +3017,7 @@ dependencies = [
|
|||
"log",
|
||||
"servo-egl",
|
||||
"simpleservo",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
"webxr",
|
||||
"webxr-api",
|
||||
]
|
||||
|
@ -3205,7 +3205,7 @@ dependencies = [
|
|||
"serde_bytes",
|
||||
"servo_arc",
|
||||
"smallbitvec",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
"string_cache",
|
||||
"thin-slice",
|
||||
"time",
|
||||
|
@ -3905,7 +3905,7 @@ dependencies = [
|
|||
"cloudabi",
|
||||
"libc",
|
||||
"redox_syscall",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
"winapi",
|
||||
]
|
||||
|
||||
|
@ -4728,7 +4728,7 @@ dependencies = [
|
|||
"phf_codegen",
|
||||
"precomputed-hash",
|
||||
"servo_arc",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
"thin-slice",
|
||||
"to_shmem",
|
||||
"to_shmem_derive",
|
||||
|
@ -5297,9 +5297,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "smallvec"
|
||||
version = "1.3.0"
|
||||
version = "1.4.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "05720e22615919e4734f6a99ceae50d00226c3c5aca406e102ebc33298214e0a"
|
||||
checksum = "3757cb9d89161a2f24e1cf78efa0c1fcff485d18e3f55e0aa3480824ddaa0f3f"
|
||||
dependencies = [
|
||||
"serde",
|
||||
]
|
||||
|
@ -5482,7 +5482,7 @@ dependencies = [
|
|||
"servo_config",
|
||||
"servo_url",
|
||||
"smallbitvec",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
"string_cache",
|
||||
"style_derive",
|
||||
"style_traits",
|
||||
|
@ -5771,7 +5771,7 @@ dependencies = [
|
|||
"cssparser",
|
||||
"servo_arc",
|
||||
"smallbitvec",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
"string_cache",
|
||||
"thin-slice",
|
||||
]
|
||||
|
@ -6090,7 +6090,7 @@ version = "0.1.12"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4"
|
||||
dependencies = [
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -6478,7 +6478,7 @@ dependencies = [
|
|||
"serde",
|
||||
"serde_json",
|
||||
"sig",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
"svg_fmt",
|
||||
"time",
|
||||
"tracy-rs",
|
||||
|
@ -6592,7 +6592,7 @@ dependencies = [
|
|||
"parking_lot 0.10.2",
|
||||
"ron",
|
||||
"serde",
|
||||
"smallvec 1.3.0",
|
||||
"smallvec 1.4.1",
|
||||
"spirv_headers",
|
||||
"tracing",
|
||||
"vec_map",
|
||||
|
|
|
@ -23,6 +23,6 @@ libservo = { path = "../../components/servo", features = ["no_static_freetype"]
|
|||
log = "0.4"
|
||||
servo-egl = "0.2"
|
||||
simpleservo = { path = "../libsimpleservo/api", features = ["no_static_freetype"] }
|
||||
smallvec = "1.3"
|
||||
smallvec = "1.4"
|
||||
webxr = { git = "https://github.com/servo/webxr", features = ["ipc", "magicleap"] }
|
||||
webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue