mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
Bug 1716518 - Upgrade thin-vec to v0.2.2.
Differential Revision: https://phabricator.services.mozilla.com/D117865 Depends on D117864
This commit is contained in:
parent
de40a4bd90
commit
dbc951959f
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -5064,9 +5064,9 @@ checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
|
||||
|
||||
[[package]]
|
||||
name = "thin-vec"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "dcc760ada4a9f56fc6d0e81bd143984ebc7bb1b875a6891aa2fa613ca7394fc0"
|
||||
checksum = "3a33c69726da418b3ee54fedf0adf26ae4bf2174539025b1df0819420b5a8417"
|
||||
|
||||
[[package]]
|
||||
name = "thiserror"
|
||||
|
@ -1 +1 @@
|
||||
{"files":{"Cargo.toml":"754c05523d17eb7591c3ea2c9294e47c05fbb257fed04b78546fb2ec7cafa8b4","README.md":"c26d7101e3031e7dd8890ce938e50cad7a1e6adf7fc2f2b0d3c36b03afe68c0b","src/lib.rs":"627c6094c3f0286dba25bc73f5672c06c5061c25b01c513d213cbdda100673a2"},"package":"dcc760ada4a9f56fc6d0e81bd143984ebc7bb1b875a6891aa2fa613ca7394fc0"}
|
||||
{"files":{"Cargo.toml":"420b06f27a5fc2865b4612200a65778517ddfb3dee5a73f4f6543d4e313e487d","README.md":"c26d7101e3031e7dd8890ce938e50cad7a1e6adf7fc2f2b0d3c36b03afe68c0b","src/lib.rs":"613774011949f9ee629d5de47d90e0bc90e1c3845387834b38d9a79a12620804"},"package":"3a33c69726da418b3ee54fedf0adf26ae4bf2174539025b1df0819420b5a8417"}
|
2
third_party/rust/thin-vec/Cargo.toml
vendored
2
third_party/rust/thin-vec/Cargo.toml
vendored
@ -13,7 +13,7 @@
|
||||
[package]
|
||||
edition = "2018"
|
||||
name = "thin-vec"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
authors = ["Alexis Beingessner <a.beingessner@gmail.com>"]
|
||||
description = "a vec that takes up less space on the stack"
|
||||
homepage = "https://github.com/gankro/thin-vec"
|
||||
|
2
third_party/rust/thin-vec/src/lib.rs
vendored
2
third_party/rust/thin-vec/src/lib.rs
vendored
@ -140,7 +140,7 @@
|
||||
//! [pinned]: https://doc.rust-lang.org/std/pin/index.html
|
||||
|
||||
use std::{fmt, io, ptr, mem, slice};
|
||||
use std::collections::Bound;
|
||||
use std::ops::Bound;
|
||||
use std::iter::FromIterator;
|
||||
use std::slice::IterMut;
|
||||
use std::ops::{Deref, DerefMut, RangeBounds};
|
||||
|
Loading…
Reference in New Issue
Block a user