Commit Graph

481 Commits

Author SHA1 Message Date
Cosmin Sabou
fdafc33d90 Backed out 2 changesets (bug 1475197) for causing linux build bustages because of compile errors.
Backed out changeset 108e22d963cb (bug 1475197)
Backed out changeset 4bd5f8588422 (bug 1475197)
2018-07-26 07:38:47 +03:00
Cameron McCormack
103876749a Bug 1475197 - Part 2: Update Cargo.lock and re-vendor Rust dependencies. r=emilio
MozReview-Commit-ID: GHrD4b8xvcC

--HG--
extra : rebase_source : b5e0e3425e8cceabe4bdcd9722420182fd839035
2018-07-17 12:15:08 +10:00
Ionut Goldan
4b89c24e3d Bug 1472803 - Remove sunspider-0.9.1 r=jmaher
MozReview-Commit-ID: ExfQ2BJ5C0n

--HG--
extra : rebase_source : 9227984d0d14af19181c58a18707ac390b3207e8
2018-07-19 15:48:33 +03:00
Ionut Goldan
bdf791d659 Bug 1472803 - Run SunSpider in browser mode r=jmaher
MozReview-Commit-ID: GgWLVx5RveF

--HG--
extra : rebase_source : 3c00a1b0feb6831e3355e70022ae57e2d10be09b
2018-07-13 16:38:19 +03:00
Emilio Cobos Álvarez
d487539dd5 Bug 1477883: Revendor Rust dependencies. r=me
MozReview-Commit-ID: LQu7Lb4GMdV
2018-07-24 04:03:26 +02:00
Jeff Muizelaar
25e708fd11 Bug 1477400. Update Cargo lockfiles and re-vendor rust dependencies 2018-07-21 12:54:38 -04:00
Cosmin Sabou
0676c53741 Merge mozilla-central to mozilla-inbound. a=merge 2018-07-21 00:51:00 +03:00
Jeff Muizelaar
4e530d2f5f Bug 1476636. Update Cargo lockfiles, re-vendor rust dependencies
--HG--
rename : third_party/rust/euclid-0.17.3/LICENSE-APACHE => third_party/rust/smallvec/LICENSE-APACHE
2018-07-20 17:24:55 -04:00
Joel Maher
04f65a0f76 Bug 1473334 - run the webaudio benchmark in raptor instead of AWFY. r=rwood
port the webaudio benchmark from arewefastyet.com to in-tree raptor.

Differential Revision: https://phabricator.services.mozilla.com/D2224

--HG--
extra : moz-landing-system : lando
2018-07-19 19:03:43 +00:00
Kartikaya Gupta
2e759049d9 Bug 1475252 - Update Cargo lockfiles, re-vendor rust dependencies, and re-generate FFI header. r=jrmuizel
MozReview-Commit-ID: 72cMhrmtbIq

--HG--
extra : rebase_source : a66d0da4efd86d3a6f164f35c753053719ebc5f8
2018-07-18 12:04:12 -04:00
Dan Minor
f893e098df Bug 1445683 - Do not build aomstats unless examples are enabled; r=chmanchester
The aomstats library is only used in the code examples, but we assume that all
libraries should be linked into libxul, which leads to an unresolved external
dependency on fatal at link time. This adds a guard to only build aomstats if
we are building the examples.

MozReview-Commit-ID: 8CRK3klUPk7

--HG--
extra : rebase_source : a50680122e4b55497a835101ef3e0f0c96cdd79e
2018-06-26 09:56:13 -04:00
Dan Minor
a2a0f53596 Bug 1445683 - Update aom to v1.0.0; r=jya
Update aom to rev d14c5bb4f336ef1842046089849dee4a301fbbf0.

MozReview-Commit-ID: YoPHbFHRq2

--HG--
rename : third_party/aom/build/cmake/aom_config.c.cmake => third_party/aom/build/cmake/aom_config.c.template
rename : third_party/aom/md5_utils.h => third_party/aom/common/md5_utils.h
rename : third_party/aom/warnings.h => third_party/aom/common/warnings.h
rename : third_party/aom/webmenc.h => third_party/aom/common/webmenc.h
rename : third_party/aom/y4minput.h => third_party/aom/common/y4minput.h
rename : third_party/aom/aomstats.h => third_party/aom/stats/aomstats.h
rename : third_party/aom/rate_hist.h => third_party/aom/stats/rate_hist.h
extra : rebase_source : 6e3d836d1d36879f862ed74227522e422f4fb5c1
2018-06-21 13:47:50 -04:00
Andreea Pavel
1261098dca Backed out 3 changesets (bug 1474300) on request by kats for introducing a crasher a=backout
Backed out changeset f7659b60b7b0 (bug 1474300)
Backed out changeset a65429a135c7 (bug 1474300)
Backed out changeset 376e702ed3ea (bug 1474300)
2018-07-15 17:57:36 +03:00
Kartikaya Gupta
0be7f6895b Bug 1474300 - Update Cargo lockfiles and re-vendor rust dependencies. r=Gankro
MozReview-Commit-ID: DnmlYWRlSl9

--HG--
extra : rebase_source : a5c34323fa3a28def00572fa5a137183bfeb1c54
2018-07-12 10:35:25 -04:00
Mike Hommey
1ad733c5c4 Bug 1474871 - Link dump_syms against rustc-demangle. r=ted
The new version of breakpad imported in bug 1309172 doesn't demangle
rust symbols at all, contrary to before, where it tried to C++ demangle
them, which worked for many, although far from all. It however has
rust-demangle support as long as it's linked against a copy of the
rust-demangle-capi crate from https://github.com/luser/rust-demangle-capi/

This imports the code from the rust-demangle-capi crate but because of
some build system complications it's not taken as-is:
- it uses rusty-cheddar, which is deprecated, to generate a C header.
- rusty-cheddar depends on syntex_syntax, which now fails to build.
- rust-demangle-capi has crate-type staticlib, which can't be used
  as a dependency in a Cargo.toml. For that reason, we can't create
  a fake crate that depends on it to have it vendored.

Overall, it's only a few lines of rust, and the C header can be written
manually, so this is what we do here. The created crate is named in a way
specific to dump_syms.

The build system doesn't know how to figure out what system libraries
are required to link rust static libraries, although the rust compiler
has /some/ support to get the information, so we handle that manually.

--HG--
extra : rebase_source : 9f5a9bfe2148d3040e11c7121a88e85a7f2d5c53
2018-07-12 10:23:12 +09:00
Dan Minor
337e0066fd Bug 1371485 - Update gyp to 4d467626b0b9f59a85fb81ca4d7ea9eca99b9d8f; r=chmanchester
Tags: #secure-revision

Bug #: 1371485

Differential Revision: https://phabricator.services.mozilla.com/D1800

--HG--
extra : rebase_source : c43b24b09e1391f7242e0cff85de67ac29a04814
2018-06-21 14:40:47 -04:00
Boris Chiou
f0bf583292 Bug 1467277 - Bump euclid to 0.18 for style, style_traits, malloc_size_of, and tests. r=emilio
In order to drop old euclid version, we still need to bump euclid for
plane-split and gfx/*. However, it needs more update and is not related to
this bug, so let's do that in other place. Here, we bump euclid to
0.18.1, and update style/values/generics/transform.rs for it.

MozReview-Commit-ID: JfNAxkR8wgs

--HG--
rename : third_party/rust/euclid/.cargo-checksum.json => third_party/rust/euclid-0.17.3/.cargo-checksum.json
rename : third_party/rust/euclid/Cargo.toml => third_party/rust/euclid-0.17.3/Cargo.toml
rename : third_party/rust/euclid/src/homogen.rs => third_party/rust/euclid-0.17.3/src/homogen.rs
rename : third_party/rust/euclid/src/length.rs => third_party/rust/euclid-0.17.3/src/length.rs
rename : third_party/rust/euclid/src/lib.rs => third_party/rust/euclid-0.17.3/src/lib.rs
rename : third_party/rust/euclid/src/macros.rs => third_party/rust/euclid-0.17.3/src/macros.rs
rename : third_party/rust/euclid/src/point.rs => third_party/rust/euclid-0.17.3/src/point.rs
rename : third_party/rust/euclid/src/rect.rs => third_party/rust/euclid-0.17.3/src/rect.rs
rename : third_party/rust/euclid/src/rotation.rs => third_party/rust/euclid-0.17.3/src/rotation.rs
rename : third_party/rust/euclid/src/scale.rs => third_party/rust/euclid-0.17.3/src/scale.rs
rename : third_party/rust/euclid/src/side_offsets.rs => third_party/rust/euclid-0.17.3/src/side_offsets.rs
rename : third_party/rust/euclid/src/size.rs => third_party/rust/euclid-0.17.3/src/size.rs
rename : third_party/rust/euclid/src/transform2d.rs => third_party/rust/euclid-0.17.3/src/transform2d.rs
rename : third_party/rust/euclid/src/transform3d.rs => third_party/rust/euclid-0.17.3/src/transform3d.rs
rename : third_party/rust/euclid/src/trig.rs => third_party/rust/euclid-0.17.3/src/trig.rs
rename : third_party/rust/euclid/src/vector.rs => third_party/rust/euclid-0.17.3/src/vector.rs
extra : rebase_source : 0594429c74c7391f80b4e291cd7fe9cbddd72b33
2018-07-09 12:10:50 -07:00
Emilio Cobos Álvarez
748d49fe57 Bug 1472538: Revendor dependencies.
MozReview-Commit-ID: 453LPDCC88b


--HG--
rename : third_party/rust/proc-macro2-0.3.6/.travis.yml => third_party/rust/proc-macro2-0.3.5/.travis.yml
rename : third_party/rust/proc-macro2-0.3.6/LICENSE-APACHE => third_party/rust/proc-macro2-0.3.5/LICENSE-APACHE
rename : third_party/rust/proc-macro2-0.3.6/LICENSE-MIT => third_party/rust/proc-macro2-0.3.5/LICENSE-MIT
rename : third_party/rust/proc-macro2-0.3.6/README.md => third_party/rust/proc-macro2-0.3.5/README.md
rename : third_party/rust/proc-macro2-0.3.6/src/strnom.rs => third_party/rust/proc-macro2-0.3.5/src/strnom.rs
rename : third_party/rust/proc-macro2-0.3.6/src/unstable.rs => third_party/rust/proc-macro2-0.3.5/src/unstable.rs
2018-07-01 16:04:49 +02:00
Dave Hunt
a631fc714d Bug 1472201 - Vendor pytest 3.6.2 and dependencies; r=ahal
MozReview-Commit-ID: 5qfK6OygVMH

--HG--
rename : third_party/python/pytest/_pytest/vendored_packages/pluggy-0.4.0.dist-info/LICENSE.txt => third_party/python/pluggy/LICENSE
rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_a/__init__.py
rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_b/__init__.py
rename : third_party/python/pytest/_pytest/_code/__init__.py => third_party/python/pytest/src/_pytest/_code/__init__.py
extra : rebase_source : d80873f2b1899decefbddddfc2f69ae045925b81
2018-06-29 15:37:31 +01:00
Kartikaya Gupta
cf154b2dd4 Bug 1471104 - Follow-up to fix incorrect rust vendoring. rs=xidorn 2018-06-28 09:31:57 -04:00
Henri Sivonen
860839ae50 Bug 1471533 - Update encoding_rs to 0.8.4. r=emk.
MozReview-Commit-ID: 40sRHT77Kzk

--HG--
extra : rebase_source : 38d8b8ca3e1c4a16aa0ed147f4a2b77a782d327d
2018-06-27 12:30:03 +03:00
Dorel Luca
bc2fbd0648 Merge mozilla-central to autoland
--HG--
extra : rebase_source : 0f5c3c308ce6ddd6fb9fcb49b83d4450a24d67dc
2018-06-27 13:33:04 +03:00
Dorel Luca
f51c4fa5d9 Merge mozilla-inbound to mozilla-central. a=merge 2018-06-27 13:26:49 +03:00
Xidorn Quan
46cae3d7aa Bug 1471104 followup - Upgrade cssparser and revendor.
MozReview-Commit-ID: 74rBgkJEcYd

--HG--
extra : rebase_source : a30d17b3d7e24f1a61c01d1dc442d6ce60c1dde3
extra : source : 8ff268ee87b7392391a6b6aa981f9180c45b27b6
2018-06-27 10:43:21 +10:00
Mike Hommey
733f22fb0d Bug 1471096 - Vendor rustc_version. r=froydnj
--HG--
extra : rebase_source : ea0b7697b33e1ec6554ba90a354c8b314293800c
2018-06-26 10:00:26 +09:00
Henri Sivonen
330ef8028e Bug 1470131 - Update encoding_rs to 0.8.3 for non-ASCII UTF-16 to UTF-8 encode performance. r=emk.
MozReview-Commit-ID: L6DhB63WzKp

--HG--
extra : rebase_source : 6e244d3dfc83a67222c6fc269261ef33d3af613c
2018-06-21 15:34:16 +03:00
Joel Maher
7b326fba08 Bug 1469280 - Fix raptor speedometer score calculation. r=rwood
ensure that raptor summarizes data properly from all benchmarks

Differential Revision: https://phabricator.services.mozilla.com/D1815
2018-06-26 10:53:05 +00:00
Dave Hunt
6a3d72d58f Bug 1428362 - Vendor blessings via |mach vendor python|; r=ahal
MozReview-Commit-ID: 7suX72iyYEV

--HG--
extra : rebase_source : 5add0fe52017f69062567debacd1967b98c0507d
extra : source : 8218a2d572c59cd4c67f115fa0c9fcd82c98f5a1
2018-05-31 13:54:43 +01:00
Joel Maher
9c7f5155eb Bug 1466853 - Port stylebench and motionmark benchmarks test from talos to raptor. r=rwood
stylebench and motionmark run in talos, we want these running in raptor

Differential Revision: https://phabricator.services.mozilla.com/D1814
2018-06-25 20:28:58 +00:00
Dave Hunt
e991dba156 Bug 1466211 - Vendor voluptuous via |mach vendor python|; r=ahal
MozReview-Commit-ID: 21q9i0lStU3

--HG--
extra : rebase_source : 966a1dd7c1c8b7786bd17de35989fef468e2baed
2018-06-01 18:56:23 +01:00
Dave Hunt
c0e75ef175 Bug 1466211 - Vendor json-e via |mach vendor python|; r=ahal
MozReview-Commit-ID: DPatUFNHDIR

--HG--
extra : rebase_source : d471abd8821cd87083f48a486daed79388f6a476
2018-06-01 18:42:11 +01:00
Rob Wood
ee92debbd0 Bug 1477272 - Fix raptor webaudio benchmark wav files; r=igoldan
MozReview-Commit-ID: 6wufkwwhord

--HG--
extra : rebase_source : bea9c24b18034df71e6dd7815c1fe64b856f9af1
2018-07-20 10:48:49 -04:00
Margareta Eliza Balazs
7a2b0ea957 Backed out 7 changesets (bug 1466211) for bustage e.g. z/task_1529662815/src/js/src/configure --enable-ctypes --enable-optimize on a CLOSED TREE
Backed out changeset 6680ca0acc27 (bug 1466211)
Backed out changeset dfdf4ea83655 (bug 1466211)
Backed out changeset 23eb377e2e6d (bug 1466211)
Backed out changeset fe821d61ecbf (bug 1466211)
Backed out changeset e04950c7c496 (bug 1466211)
Backed out changeset 4b197754381a (bug 1466211)
Backed out changeset 1695d4464c54 (bug 1466211)
2018-06-22 14:33:21 +03:00
Dave Hunt
aed322c276 Bug 1466211 - Vendor voluptuous via |mach vendor python|; r=ahal
MozReview-Commit-ID: 21q9i0lStU3

--HG--
extra : rebase_source : 966a1dd7c1c8b7786bd17de35989fef468e2baed
2018-06-01 18:56:23 +01:00
Dave Hunt
c1dfb5d2d3 Bug 1466211 - Vendor json-e via |mach vendor python|; r=ahal
MozReview-Commit-ID: DPatUFNHDIR

--HG--
extra : rebase_source : d471abd8821cd87083f48a486daed79388f6a476
2018-06-01 18:42:11 +01:00
Gurzau Raul
9862c7afdc Backed out changeset 96496ebab2d9 (bug 1466853) for StyleBench failures on a CLOSED TREE 2018-06-22 02:51:38 +03:00
Joel Maher
2495332bb2 Bug 1466853 - Port stylebench and motionmark benchmarks test from talos to raptor. r=rwood
Currently stylebench and motionmark run on talos, these are ideal benchmarks to run on raptor

Differential Revision: https://phabricator.services.mozilla.com/D1752
2018-06-21 21:00:41 +00:00
Gurzau Raul
977ed7b22b Backed out changeset 683a682e52b2 (bug 1466853) for flake fail on checkouts/gecko/testing/raptor/raptor/benchmark.py on a CLOSED TREE 2018-06-21 23:57:30 +03:00
Joel Maher
63ddbd28ee Bug 1466853 - Port stylebench and motionmark benchmarks test from talos to raptor. r=rwood
Currently stylebench and motionmark run on talos, these are ideal benchmarks to run on raptor

Differential Revision: https://phabricator.services.mozilla.com/D1752
2018-06-21 20:34:51 +00:00
Kartikaya Gupta
ba31bba005 Bug 1468950 - Update Cargo lockfiles and re-vendor rust dependencies. r=Gankro
MozReview-Commit-ID: 3kcDWGBPXt9

--HG--
rename : third_party/rust/proc-macro2/.cargo-checksum.json => third_party/rust/proc-macro2-0.3.6/.cargo-checksum.json
rename : third_party/rust/proc-macro2/.travis.yml => third_party/rust/proc-macro2-0.3.6/.travis.yml
rename : third_party/rust/proc-macro2/Cargo.toml => third_party/rust/proc-macro2-0.3.6/Cargo.toml
rename : third_party/rust/proc-macro2/README.md => third_party/rust/proc-macro2-0.3.6/README.md
rename : third_party/rust/proc-macro2/src/lib.rs => third_party/rust/proc-macro2-0.3.6/src/lib.rs
rename : third_party/rust/proc-macro2/src/stable.rs => third_party/rust/proc-macro2-0.3.6/src/stable.rs
rename : third_party/rust/proc-macro2/src/strnom.rs => third_party/rust/proc-macro2-0.3.6/src/strnom.rs
rename : third_party/rust/proc-macro2/src/unstable.rs => third_party/rust/proc-macro2-0.3.6/src/unstable.rs
rename : third_party/rust/proc-macro2/tests/test.rs => third_party/rust/proc-macro2-0.3.6/tests/test.rs
rename : third_party/rust/quote/.cargo-checksum.json => third_party/rust/quote-0.5.2/.cargo-checksum.json
rename : third_party/rust/quote/Cargo.toml => third_party/rust/quote-0.5.2/Cargo.toml
rename : third_party/rust/quote/README.md => third_party/rust/quote-0.5.2/README.md
rename : third_party/rust/quote/src/lib.rs => third_party/rust/quote-0.5.2/src/lib.rs
rename : third_party/rust/quote/src/to_tokens.rs => third_party/rust/quote-0.5.2/src/to_tokens.rs
rename : third_party/rust/quote/src/tokens.rs => third_party/rust/quote-0.5.2/src/tokens.rs
rename : third_party/rust/quote/tests/test.rs => third_party/rust/quote-0.5.2/tests/test.rs
rename : third_party/rust/syn/.cargo-checksum.json => third_party/rust/syn-0.13.1/.cargo-checksum.json
rename : third_party/rust/syn/Cargo.toml => third_party/rust/syn-0.13.1/Cargo.toml
rename : third_party/rust/syn/README.md => third_party/rust/syn-0.13.1/README.md
rename : third_party/rust/syn/src/attr.rs => third_party/rust/syn-0.13.1/src/attr.rs
rename : third_party/rust/syn/src/buffer.rs => third_party/rust/syn-0.13.1/src/buffer.rs
rename : third_party/rust/syn/src/data.rs => third_party/rust/syn-0.13.1/src/data.rs
rename : third_party/rust/syn/src/derive.rs => third_party/rust/syn-0.13.1/src/derive.rs
rename : third_party/rust/syn/src/error.rs => third_party/rust/syn-0.13.1/src/error.rs
rename : third_party/rust/syn/src/expr.rs => third_party/rust/syn-0.13.1/src/expr.rs
rename : third_party/rust/syn/src/file.rs => third_party/rust/syn-0.13.1/src/file.rs
rename : third_party/rust/syn/src/gen/fold.rs => third_party/rust/syn-0.13.1/src/gen/fold.rs
rename : third_party/rust/syn/src/gen/visit.rs => third_party/rust/syn-0.13.1/src/gen/visit.rs
rename : third_party/rust/syn/src/gen/visit_mut.rs => third_party/rust/syn-0.13.1/src/gen/visit_mut.rs
rename : third_party/rust/syn/src/gen_helper.rs => third_party/rust/syn-0.13.1/src/gen_helper.rs
rename : third_party/rust/syn/src/generics.rs => third_party/rust/syn-0.13.1/src/generics.rs
rename : third_party/rust/syn/src/ident.rs => third_party/rust/syn-0.13.1/src/ident.rs
rename : third_party/rust/syn/src/item.rs => third_party/rust/syn-0.13.1/src/item.rs
rename : third_party/rust/syn/src/lib.rs => third_party/rust/syn-0.13.1/src/lib.rs
rename : third_party/rust/syn/src/lifetime.rs => third_party/rust/syn-0.13.1/src/lifetime.rs
rename : third_party/rust/syn/src/lit.rs => third_party/rust/syn-0.13.1/src/lit.rs
rename : third_party/rust/syn/src/mac.rs => third_party/rust/syn-0.13.1/src/mac.rs
rename : third_party/rust/syn/src/macros.rs => third_party/rust/syn-0.13.1/src/macros.rs
rename : third_party/rust/syn/src/op.rs => third_party/rust/syn-0.13.1/src/op.rs
rename : third_party/rust/syn/src/parse_quote.rs => third_party/rust/syn-0.13.1/src/parse_quote.rs
rename : third_party/rust/syn/src/parsers.rs => third_party/rust/syn-0.13.1/src/parsers.rs
rename : third_party/rust/syn/src/path.rs => third_party/rust/syn-0.13.1/src/path.rs
rename : third_party/rust/syn/src/punctuated.rs => third_party/rust/syn-0.13.1/src/punctuated.rs
rename : third_party/rust/syn/src/spanned.rs => third_party/rust/syn-0.13.1/src/spanned.rs
rename : third_party/rust/syn/src/synom.rs => third_party/rust/syn-0.13.1/src/synom.rs
rename : third_party/rust/syn/src/token.rs => third_party/rust/syn-0.13.1/src/token.rs
rename : third_party/rust/syn/src/tt.rs => third_party/rust/syn-0.13.1/src/tt.rs
rename : third_party/rust/syn/src/ty.rs => third_party/rust/syn-0.13.1/src/ty.rs
extra : rebase_source : bda7c9d57b337b22b0cf8c095c4d3a79f4cd2682
2018-06-21 08:22:02 -04:00
Henri Sivonen
57c6e581fe Bug 1469512 - Update encoding_rs to 0.8.1. r=emk.
MozReview-Commit-ID: 4iIHsLsXP1r

--HG--
extra : rebase_source : fdee4c397ff9a1c2f8a84f1b63e6ed6d5a633b23
2018-06-19 12:46:46 +03:00
Joel Maher
3732d000de Bug 1465360 - add asm.js-apps shell benchmark to jsshell-bench. r=ahal 2018-06-19 08:58:20 -04:00
Emilio Cobos Álvarez
5d02e2677d Bug 1469228: Revendor rust dependencies. r=me
MozReview-Commit-ID: KEx2kxGH0iO
2018-06-18 10:43:07 +02:00
Andreas Tolfsen
14a4db48fa Bug 1441204 - Upgrade rust-ini from 0.10.2 to 0.10.3. r=maja_zf
MozReview-Commit-ID: DZp1wg7uVLN

--HG--
extra : rebase_source : 6e90df2a83accff53d021303e9bafc46aa1afe98
2018-06-14 13:05:30 -07:00
Andreas Tolfsen
fcac0dc071 Bug 1441204 - Upgrade winreg crate from 0.5.0 to 0.5.1. r=maja_zf
MozReview-Commit-ID: EtBBvUGnTzb

--HG--
extra : rebase_source : e31a8b58b8726a24cd7aa760440b13ddc6f994e3
2018-06-14 13:04:25 -07:00
Andreas Tolfsen
988a7b847b Bug 1441204 - Upgrade unicode-segmentation from 1.1.0 to 1.2.1. r=maja_zf
MozReview-Commit-ID: 1KUU2U7AVz4

--HG--
extra : rebase_source : fe6951e60f80fe09ea215b05213116087a3af3b9
2018-06-14 13:01:20 -07:00
Andreas Tolfsen
ecd221fa64 Bug 1441204 - Upgrade time crate from 0.1.38 to 0.1.40. r=maja_zf
MozReview-Commit-ID: 3bdeeSwyE8Q

--HG--
extra : rebase_source : b3d57f59cc40534f9aee57140e759e435c10ee43
2018-06-14 12:58:45 -07:00
Andreas Tolfsen
08c845b39c Bug 1441204 - Upgrade zip crate from 0.3.1 to 0.3.3. r=maja_zf
MozReview-Commit-ID: LjzVBrGK4LM

--HG--
extra : rebase_source : 0326e546304339ade10e312df0a619f627b115e7
2018-06-14 12:57:36 -07:00
Andreas Tolfsen
d167d54ea0 Bug 1441204 - Upgrade log crate from 0.4.1 to 0.4.2. r=maja_zf
MozReview-Commit-ID: FMIeUf55uzU

--HG--
extra : rebase_source : d9aa60055cbb1bb313e0c695ad08599af25b155a
2018-06-14 12:49:09 -07:00
Andreas Tolfsen
d7d1dbd6fa Bug 1441204 - Upgrade lazy_static from 1.0.0 to 1.0.1. r=maja_zf
MozReview-Commit-ID: K1FK0cr0eaJ

--HG--
extra : rebase_source : 5ac6d8cd76768a2525489165edbd75f79a5723ef
2018-06-14 12:47:45 -07:00