| author | Nicolas Silva <nsilva@mozilla.com> |
| Tue, 14 Jan 2020 13:07:28 +0000 | |
| changeset 510167 | 6102fc5f041ca5495f48a57a130c10cb6a55063a |
| parent 510166 | 8e607cd330ee1068e4509e3a46df4da600d06120 |
| child 510168 | 1b8ec758170646bbfdbe819540f174e622c43267 |
| push id | 37014 |
| push user | cbrindusan@mozilla.com |
| push date | Tue, 14 Jan 2020 21:43:07 +0000 |
| treeherder | mozilla-central@12d8255184b1 [default view] [failures only] |
| perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
| reviewers | jrmuizel |
| bugs | 1609049 |
| milestone | 74.0a1 |
| first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
| last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
| gfx/wr/peek-poke/Cargo.toml | file | annotate | diff | comparison | revisions | |
| gfx/wr/peek-poke/peek-poke-derive/Cargo.toml | file | annotate | diff | comparison | revisions |
--- a/gfx/wr/peek-poke/Cargo.toml +++ b/gfx/wr/peek-poke/Cargo.toml @@ -1,12 +1,14 @@ [package] name = "peek-poke" version = "0.2.0" authors = ["Dan Glastonbury <dan.glastonbury@gmail.com>"] +repository = "https://github.com/servo/webrender" +description = "A mechanism for serializing and deserializing data into/from byte buffers, for use in WebRender." license = "MIT/Apache-2.0" edition = "2018" [dependencies] euclid = { version = "0.20.0", optional = true } peek-poke-derive = { version = "0.2", path = "./peek-poke-derive", optional = true } [features]
--- a/gfx/wr/peek-poke/peek-poke-derive/Cargo.toml +++ b/gfx/wr/peek-poke/peek-poke-derive/Cargo.toml @@ -1,12 +1,14 @@ [package] name = "peek-poke-derive" version = "0.2.1" authors = ["Dan Glastonbury <dan.glastonbury@gmail.com>"] +repository = "https://github.com/servo/webrender" +description = "Derive macro for peek-poke." license = "MIT/Apache-2.0" edition = "2018" [lib] doctest = false proc-macro = true [dependencies]