mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Start the transition to workspace dependencies
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.
This commit is contained in:
parent
c5d31c3ab6
commit
2f4c47bfe7
64 changed files with 540 additions and 467 deletions
|
@ -15,8 +15,8 @@ crate-type = ["cdylib"]
|
|||
path = "lib.rs"
|
||||
|
||||
[dependencies]
|
||||
crossbeam-channel = "0.4"
|
||||
euclid = "0.22"
|
||||
crossbeam-channel = { workspace = true }
|
||||
euclid = { workspace = true }
|
||||
glib = "0.9"
|
||||
gstreamer = "0.15"
|
||||
gstreamer-base = "0.15"
|
||||
|
@ -24,14 +24,14 @@ gstreamer-gl = "0.15"
|
|||
gstreamer-gl-sys = { version = "0.8", features = ["wayland"] }
|
||||
gstreamer-sys = "0.8"
|
||||
gstreamer-video = "0.15"
|
||||
lazy_static = "1.4"
|
||||
lazy_static = { workspace = true }
|
||||
libservo = { path = "../../components/servo" }
|
||||
log = "0.4"
|
||||
log = { workspace = true }
|
||||
servo-media = { git = "https://github.com/servo/media" }
|
||||
sparkle = "0.1"
|
||||
surfman = "0.6"
|
||||
surfman-chains = "0.7"
|
||||
surfman-chains-api = "0.2"
|
||||
sparkle = { workspace = true }
|
||||
surfman = { workspace = true }
|
||||
surfman-chains = { workspace = true }
|
||||
surfman-chains-api = { workspace = true }
|
||||
webxr = { git = "https://github.com/servo/webxr", features = ["glwindow"] }
|
||||
|
||||
[build-dependencies]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue