diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-10-14 20:32:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-14 20:32:42 -0400 |
commit | 1f6402465579e787e63b34b24ac46593c27c2f3d (patch) | |
tree | 772b06bf4428ceaec7dabf19be92a7db518099a4 | |
parent | eee2c895f41081750e34c2ecc6e95e7e1cbac784 (diff) | |
parent | ef8804f91cb860461fd336307cee0ab92cd78e80 (diff) | |
download | servo-1f6402465579e787e63b34b24ac46593c27c2f3d.tar.gz servo-1f6402465579e787e63b34b24ac46593c27c2f3d.zip |
Auto merge of #24445 - atouchet:malloc, r=Manishearth
Update malloc_size_of_derive
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [ ] `./mach build -d` does not report any errors
- [ ] `./mach test-tidy` does not report any errors
- [ ] These changes fix #___ (GitHub issue number if applicable)
<!-- Either: -->
- [ ] There are tests for these changes OR
- [ ] These changes do not require tests because ___
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
-rw-r--r-- | Cargo.lock | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Cargo.lock b/Cargo.lock index b16e963c219..b18f38cc95f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -977,7 +977,7 @@ name = "deny_public_fields" version = "0.0.1" dependencies = [ "syn 1.0.3", - "synstructure 0.12.0", + "synstructure 0.12.1", ] [[package]] @@ -1006,7 +1006,7 @@ dependencies = [ "proc-macro2 1.0.1", "quote 1.0.2", "syn 1.0.3", - "synstructure 0.12.0", + "synstructure 0.12.1", ] [[package]] @@ -2396,7 +2396,7 @@ version = "0.0.1" dependencies = [ "proc-macro2 1.0.1", "syn 1.0.3", - "synstructure 0.12.0", + "synstructure 0.12.1", ] [[package]] @@ -2859,13 +2859,13 @@ dependencies = [ [[package]] name = "malloc_size_of_derive" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35adee9ed962cf7d07d62cb58bc45029f3227f5b5b86246caa8632f06c187bc3" +checksum = "e37c5d4cd9473c5f4c9c111f033f15d4df9bd378fdf615944e360a4f55a05f0b" dependencies = [ - "proc-macro2 0.4.26", - "syn 0.15.39", - "synstructure 0.10.1", + "proc-macro2 1.0.1", + "syn 1.0.3", + "synstructure 0.12.1", ] [[package]] @@ -5036,7 +5036,7 @@ dependencies = [ "proc-macro2 1.0.1", "quote 1.0.2", "syn 1.0.3", - "synstructure 0.12.0", + "synstructure 0.12.1", ] [[package]] @@ -5135,14 +5135,14 @@ dependencies = [ [[package]] name = "synstructure" -version = "0.12.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "affc27d5f1764f7487bafeb41e380664790716e38ba45d8487bddcc53e79f0f6" +checksum = "3f085a5855930c0441ca1288cf044ea4aecf4f43a91668abdb870b4ba546a203" dependencies = [ "proc-macro2 1.0.1", "quote 1.0.2", "syn 1.0.3", - "unicode-xid 0.1.0", + "unicode-xid 0.2.0", ] [[package]] @@ -5288,7 +5288,7 @@ dependencies = [ "proc-macro2 1.0.1", "quote 1.0.2", "syn 1.0.3", - "synstructure 0.12.0", + "synstructure 0.12.1", ] [[package]] |