mirror of
https://github.com/servo/servo.git
synced 2025-08-13 01:15:34 +01:00
This will ultimately make it simpler to update crate dependencies and reduce duplicate when specifying requirements. Generally, this change does not touch dependencies that are only used by a single crate. We could consider moving them to workspace dependencies in the future.
23 lines
586 B
TOML
23 lines
586 B
TOML
[package]
|
|
name = "media"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "media"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
euclid = { workspace = true }
|
|
fnv = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
log = { workspace = true }
|
|
serde = { workspace = true }
|
|
servo-media = { git = "https://github.com/servo/media" }
|
|
servo_config = { path = "../config" }
|
|
webrender_api = { git = "https://github.com/servo/webrender" }
|
|
webrender_traits = { path = "../webrender_traits" }
|