Skip to content

Commit

Permalink
Update gstreamer crates to 0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
sagudev committed Mar 1, 2024
1 parent 5f39913 commit a5a1094
Show file tree
Hide file tree
Showing 9 changed files with 103 additions and 129 deletions.
195 changes: 83 additions & 112 deletions Cargo.lock

Large diffs are not rendered by default.

19 changes: 11 additions & 8 deletions Cargo.toml
Expand Up @@ -39,14 +39,14 @@ fxhash = "0.2"
getopts = "0.2.11"
gfx_traits = { path = "components/shared/gfx" }
gleam = "0.15"
glib = "0.18"
gstreamer = { version = "0.21", features = ["v1_18"] }
gstreamer-base = "0.21"
gstreamer-gl = "0.21"
gstreamer-gl-sys = { version = "0.21" }
gstreamer-gl-wayland = { version = "0.21" }
gstreamer-sys = "0.21"
gstreamer-video = "0.21"
glib = "0.19"
gstreamer = { version = "0.22", features = ["v1_18"] }
gstreamer-base = "0.22"
gstreamer-gl = "0.22"
gstreamer-gl-sys = { version = "0.22" }
gstreamer-gl-wayland = { version = "0.22" }
gstreamer-sys = "0.22"
gstreamer-video = "0.22"
headers = "0.3"
html5ever = "0.26"
http = "0.2"
Expand Down Expand Up @@ -91,6 +91,9 @@ selectors = { git = "https://github.com/servo/stylo.git", branch = "2023-07-23"
serde = "1.0.197"
serde_bytes = "0.11"
serde_json = "1.0"
servo-media = { git = "https://github.com/servo/media" }
servo-media-dummy = { git = "https://github.com/servo/media" }
servo-media-gstreamer = { git = "https://github.com/servo/media" }
servo_arc = { git = "https://github.com/servo/stylo.git", branch = "2023-07-23" }
servo_atoms = { git = "https://github.com/servo/stylo.git", branch = "2023-07-23" }
size_of_test = { git = "https://github.com/servo/stylo.git", branch = "2023-07-23" }
Expand Down
2 changes: 1 addition & 1 deletion components/compositing/Cargo.toml
Expand Up @@ -36,7 +36,7 @@ pixels = { path = "../pixels" }
profile_traits = { workspace = true }
script_traits = { workspace = true }
servo_config = { path = "../config" }
servo-media = { git = "https://github.com/servo/media" }
servo-media = { workspace = true }
servo_geometry = { path = "../geometry" }
servo_url = { path = "../url" }
style_traits = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion components/media/Cargo.toml
Expand Up @@ -17,7 +17,7 @@ ipc-channel = { workspace = true }
lazy_static = { workspace = true }
log = { workspace = true }
serde = { workspace = true }
servo-media = { git = "https://github.com/servo/media" }
servo-media = { workspace = true }
servo_config = { path = "../config" }
webrender_api = { workspace = true }
webrender_traits = { workspace = true }
2 changes: 1 addition & 1 deletion components/script/Cargo.toml
Expand Up @@ -91,7 +91,7 @@ script_traits = { workspace = true }
selectors = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_bytes = { workspace = true }
servo-media = { git = "https://github.com/servo/media" }
servo-media = { workspace = true }
servo_allocator = { path = "../allocator" }
servo_arc = { workspace = true }
servo_atoms = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions components/servo/Cargo.toml
Expand Up @@ -65,9 +65,9 @@ profile_traits = { workspace = true }
script = { path = "../script" }
script_layout_interface = { workspace = true }
script_traits = { workspace = true }
servo-media = { git = "https://github.com/servo/media" }
servo-media-dummy = { git = "https://github.com/servo/media" }
servo-media-gstreamer = { git = "https://github.com/servo/media", optional = true }
servo-media = { workspace = true }
servo-media-dummy = { workspace = true }
servo-media-gstreamer = { workspace = true, optional = true }
servo_config = { path = "../config" }
servo_geometry = { path = "../geometry" }
servo_url = { path = "../url" }
Expand Down
2 changes: 1 addition & 1 deletion ports/jniapi/Cargo.toml
Expand Up @@ -23,7 +23,7 @@ libloading = "0.8"
libservo = { path = "../../components/servo" }
log = { workspace = true }
serde_json = { workspace = true }
servo-media = { git = "https://github.com/servo/media" }
servo-media = { workspace = true }
surfman = { workspace = true, features = ["sm-angle-default"] }
webxr = { git = "https://github.com/servo/webxr" }

Expand Down
2 changes: 1 addition & 1 deletion ports/servoshell/Cargo.toml
Expand Up @@ -70,7 +70,7 @@ libc = { workspace = true }
libservo = { path = "../../components/servo" }
log = { workspace = true }
raw-window-handle = "0.5"
servo-media = { git = "https://github.com/servo/media" }
servo-media = { workspace = true }
shellwords = "1.0.0"
surfman = { workspace = true, features = ["sm-x11", "sm-raw-window-handle"] }
tinyfiledialogs = "3.0"
Expand Down
2 changes: 1 addition & 1 deletion support/filterlock/Cargo.toml
Expand Up @@ -9,4 +9,4 @@ license = "MPL-2.0"

[dependencies]
serde = { version = "1.0.194", features = ["derive"] }
toml = { version = "0.8.8", features = ["preserve_order"] }
toml = { version = "0.8.9", features = ["preserve_order"] }

0 comments on commit a5a1094

Please sign in to comment.