gst-plugins-rs/net/onvif/Cargo.toml

50 lines
1.2 KiB
TOML

[package]
name = "gst-plugin-onvif"
version.workspace = true
authors = ["Mathieu Duponchelle <mathieu@centricular.com>"]
repository.workspace = true
license = "MPL-2.0"
description = "GStreamer Rust ONVIF Plugin"
edition.workspace = true
rust-version.workspace = true
[dependencies]
gst = { workspace = true, features = ["v1_20"] }
gst-rtp = { workspace = true, features = ["v1_20"] }
gst-base = { workspace = true, features = ["v1_20"] }
gst-video = { workspace = true, features = ["v1_20"] }
xmlparser = "0.13"
chrono = { version = "0.4.31", default-features = false }
cairo-rs.workspace = true
pango.workspace = true
pangocairo.workspace = true
xmltree = "0.10"
once_cell.workspace = true
[lib]
name = "gstrsonvif"
crate-type = ["cdylib", "rlib"]
path = "src/lib.rs"
[build-dependencies]
gst-plugin-version-helper.workspace = true
[features]
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, gobject-2.0, glib-2.0, gmodule-2.0, pango, pangocairo"