mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
This PR makes minor cleanup in the media crates: - Switch dependencies to workspace dependencies if they are already included in the main Cargo.toml - Switch from crate serde_derive to serde with feature flag derive. - Switch from the separate crate for OnceCell to the std provided LazyLock. - Update num_complex Testing: The only functional changes are either slight version bumps, the replacement to LazyLock which is conservative and the num_complex update which also shouldn't have any behavior changes. --------- Signed-off-by: Narfinger <Narfinger@users.noreply.github.com>
21 lines
426 B
TOML
21 lines
426 B
TOML
[package]
|
|
name = "servo-media-derive"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
repository.workspace = true
|
|
description.workspace = true
|
|
|
|
[lib]
|
|
name = "servo_media_derive"
|
|
proc-macro = true
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
syn = { workspace = true }
|
|
quote = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|