Skip to content

Commit

Permalink
Bug 1776096 - Bump WebRender crate versions. r=jrmuizel
Browse files Browse the repository at this point in the history
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
bholley committed Jun 24, 2022
1 parent 2a79625 commit 2869691
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 26 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gfx/webrender_bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ gecko-profiler = { path = "../../tools/profiler/rust-api" }

[dependencies.webrender]
path = "../wr/webrender"
version = "0.61.0"
version = "0.62.0"
default-features = false
features = ["capture", "serialize_program", "gecko", "sw_compositor"]

Expand Down
12 changes: 6 additions & 6 deletions gfx/wr/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions gfx/wr/peek-poke/Cargo.toml
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."
Expand All @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion gfx/wr/peek-poke/peek-poke-derive/Cargo.toml
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."
Expand Down
10 changes: 5 additions & 5 deletions gfx/wr/webrender/Cargo.toml
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"
Expand All @@ -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"
Expand All @@ -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"] }
Expand Down
6 changes: 3 additions & 3 deletions gfx/wr/webrender_api/Cargo.toml
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"
Expand All @@ -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"
2 changes: 1 addition & 1 deletion gfx/wr/webrender_build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "webrender_build"
authors = ["The Servo Project Developers"]
version = "0.0.1"
version = "0.0.2"
license = "MPL-2.0"
repository = "https://github.com/servo/webrender"
description = "Code shared between precompilation (build.rs) and the rest of WebRender"
Expand Down
2 changes: 1 addition & 1 deletion gfx/wr/wr_malloc_size_of/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["The Servo Project Developers"]
description = "Internal utility to measure memory usage in WebRender."
name = "wr_malloc_size_of"
version = "0.0.1"
version = "0.0.2"
license = "MIT/Apache-2.0"
edition = "2018"

Expand Down

0 comments on commit 2869691

Please sign in to comment.