mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Bumps [gleam](https://github.com/servo/gleam) from 0.9.2 to 0.11.0. - [Release notes](https://github.com/servo/gleam/releases) - [Commits](https://github.com/servo/gleam/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
39 lines
967 B
TOML
39 lines
967 B
TOML
[package]
|
|
name = "servo-gst-plugin"
|
|
description = "A GStreamer plugin that provides servosrc"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
repository = "https://github.com/servo/servo/"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "gstservoplugin"
|
|
crate-type = ["cdylib"]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
crossbeam-channel = "0.4"
|
|
euclid = "0.20"
|
|
gleam = "0.11"
|
|
glib = "0.9"
|
|
gstreamer = "0.15"
|
|
gstreamer-base = "0.15"
|
|
gstreamer-gl = "0.15"
|
|
gstreamer-gl-sys = { version = "0.8", features = ["wayland"] }
|
|
gstreamer-sys = "0.8"
|
|
gstreamer-video = "0.15"
|
|
log = "0.4"
|
|
lazy_static = "1.4"
|
|
libservo = {path = "../../components/servo"}
|
|
servo-media = {git = "https://github.com/servo/media"}
|
|
sparkle = "0.1"
|
|
surfman = { git = "https://github.com/servo/surfman" }
|
|
surfman-chains-api = "0.2"
|
|
surfman-chains = { git = "https://github.com/asajeffrey/surfman-chains" }
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper = "0.2"
|
|
|