mirror of
https://github.com/servo/servo
synced 2026-04-26 17:45:19 +02:00
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.
20 lines
388 B
TOML
20 lines
388 B
TOML
[package]
|
|
name = "servo_rand"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "servo_rand"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
lazy_static = { workspace = true }
|
|
log = { workspace = true }
|
|
rand = { workspace = true }
|
|
rand_core = { workspace = true }
|
|
rand_isaac = { workspace = true }
|
|
uuid = { workspace = true }
|