Disable WebRender debugger and upgrade webxr / media / rand (#30190)

Now that our dependencies are using a newer version of rand we can
upgrade. This change also disables the WebRender debugger feature
because it has been removed in later versions of WebRender and allows
deduplicated the rand dependency as well as quite a few others.
This commit is contained in:
Martin Robinson 2023-08-24 11:57:49 +02:00 committed by GitHub
parent 41ae460270
commit acf7fdb90c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 71 additions and 324 deletions

View file

@ -14,6 +14,6 @@ path = "lib.rs"
lazy_static = { workspace = true }
log = { workspace = true }
rand = { workspace = true }
rand_core = "0.5"
rand_isaac = "0.2"
rand_core = { workspace = true }
rand_isaac = { workspace = true }
uuid = { workspace = true }