mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-04 16:49:36 +00:00
62 lines
1.7 KiB
TOML
62 lines
1.7 KiB
TOML
[package]
|
|
name = "gst-plugin-closedcaption"
|
|
version.workspace = true
|
|
authors = ["Sebastian Dröge <sebastian@centricular.com>", "Jordan Petridis <jordan@centricular.com>", "Matthew Waters <matthew@centricular.com>"]
|
|
license = "MPL-2.0"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
description = "GStreamer Rust Closed Caption Plugin"
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
nom = "7.0"
|
|
either = "1"
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
chrono = "0.4.23"
|
|
atomic_refcell = "0.1"
|
|
cairo-rs.workspace = true
|
|
pango.workspace = true
|
|
pangocairo.workspace = true
|
|
byteorder = "1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0", features = ["raw_value"] }
|
|
cea708-types = "0.3"
|
|
once_cell.workspace = true
|
|
gst = { workspace = true, features = ["v1_16"]}
|
|
gst-base = { workspace = true, features = ["v1_16"]}
|
|
gst-video = { workspace = true, features = ["v1_16"]}
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1"
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
|
gst-check.workspace = true
|
|
|
|
[lib]
|
|
name = "gstrsclosedcaption"
|
|
crate-type = ["cdylib", "rlib"]
|
|
path = "src/lib.rs"
|
|
|
|
[build-dependencies]
|
|
gst-plugin-version-helper.workspace = true
|
|
cc = "1.0"
|
|
|
|
[features]
|
|
# We already use 1.16 which is new enough for static build
|
|
static = []
|
|
capi = []
|
|
doc = ["gst/v1_18"]
|
|
|
|
[package.metadata.capi]
|
|
min_version = "0.9.21"
|
|
|
|
[package.metadata.capi.header]
|
|
enabled = false
|
|
|
|
[package.metadata.capi.library]
|
|
install_subdir = "gstreamer-1.0"
|
|
versioning = false
|
|
import_library = false
|
|
|
|
[package.metadata.capi.pkg_config]
|
|
requires_private = "gstreamer-1.0, gstreamer-base-1.0, gstreamer-video-1.0, gobject-2.0, glib-2.0, gmodule-2.0, pango, pangocairo, cairo-gobject"
|