mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01: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.
19 lines
388 B
TOML
19 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 }
|