forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1776096 - Bump WebRender crate versions. r=jrmuizel
We formerly published webrender to crates.io, but haven't done so in several years. However, the in-tree version number still matches the version published on crates.io, causing cargo-vet to flag that this is something that should potentially be audited. We could silence that on the cargo-vet side, but then if we ever starting publishing it again we'd miss the nudge to certify the audit (which would be useful to anyone consuming it). So bumping the versions to a not-yet-published number is a good way to correctly articulate the situation. Differential Revision: https://phabricator.services.mozilla.com/D150055
- Loading branch information
Showing
9 changed files
with
26 additions
and
26 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "peek-poke" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Dan Glastonbury <[email protected]>"] | ||
repository = "https://github.com/servo/webrender" | ||
description = "A mechanism for serializing and deserializing data into/from byte buffers, for use in WebRender." | ||
|
@@ -9,7 +9,7 @@ edition = "2018" | |
|
||
[dependencies] | ||
euclid = { version = "0.22.0", optional = true } | ||
peek-poke-derive = { version = "0.2", path = "./peek-poke-derive", optional = true } | ||
peek-poke-derive = { version = "0.3", path = "./peek-poke-derive", optional = true } | ||
|
||
[features] | ||
default = ["derive"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "peek-poke-derive" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
authors = ["Dan Glastonbury <[email protected]>"] | ||
repository = "https://github.com/servo/webrender" | ||
description = "Derive macro for peek-poke." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "webrender" | ||
version = "0.61.0" | ||
version = "0.62.0" | ||
authors = ["Glenn Watson <[email protected]>"] | ||
license = "MPL-2.0" | ||
repository = "https://github.com/servo/webrender" | ||
|
@@ -24,7 +24,7 @@ sw_compositor = ["swgl"] | |
[build-dependencies] | ||
build-parallel = "0.1.2" | ||
glslopt = "0.1.9" | ||
webrender_build = { version = "0.0.1", path = "../webrender_build" } | ||
webrender_build = { version = "0.0.2", path = "../webrender_build" } | ||
|
||
[dependencies] | ||
bincode = "1.0" | ||
|
@@ -44,9 +44,9 @@ ron = { optional = true, version = "0.7" } | |
serde = { optional = true, version = "1.0", features = ["serde_derive"] } | ||
smallvec = "1" | ||
time = "0.1" | ||
api = { version = "0.61.0", path = "../webrender_api", package = "webrender_api" } | ||
webrender_build = { version = "0.0.1", path = "../webrender_build" } | ||
malloc_size_of = { version = "0.0.1", path = "../wr_malloc_size_of", package = "wr_malloc_size_of" } | ||
api = { version = "0.62.0", path = "../webrender_api", package = "webrender_api" } | ||
webrender_build = { version = "0.0.2", path = "../webrender_build" } | ||
malloc_size_of = { version = "0.0.2", path = "../wr_malloc_size_of", package = "wr_malloc_size_of" } | ||
svg_fmt = "0.4" | ||
tracy-rs = "0.1.2" | ||
derive_more = { version = "0.99", default-features = false, features = ["add_assign"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "webrender_api" | ||
version = "0.61.0" | ||
version = "0.62.0" | ||
authors = ["Glenn Watson <[email protected]>"] | ||
license = "MPL-2.0" | ||
repository = "https://github.com/servo/webrender" | ||
|
@@ -23,6 +23,6 @@ serde = { version = "1.0", features = ["rc"] } | |
serde_derive = "1.0" | ||
serde_bytes = "0.11" | ||
time = "0.1" | ||
malloc_size_of = { version = "0.0.1", path = "../wr_malloc_size_of", package = "wr_malloc_size_of" } | ||
peek-poke = { version = "0.2", path = "../peek-poke", features = ["extras"] } | ||
malloc_size_of = { version = "0.0.2", path = "../wr_malloc_size_of", package = "wr_malloc_size_of" } | ||
peek-poke = { version = "0.3", path = "../peek-poke", features = ["extras"] } | ||
crossbeam-channel = "0.5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters