2022-12-10 07:37:33 +00:00
|
|
|
[package]
|
2024-05-01 12:42:12 +00:00
|
|
|
name = "gst-plugin-quinn"
|
2022-12-10 07:37:33 +00:00
|
|
|
version.workspace = true
|
|
|
|
authors = ["Sanchayan Maity <sanchayan@asymptotic.io"]
|
2024-05-02 06:59:33 +00:00
|
|
|
repository.workspace = true
|
2022-12-10 07:37:33 +00:00
|
|
|
license = "MPL-2.0"
|
2024-05-02 06:59:33 +00:00
|
|
|
edition.workspace = true
|
2022-12-10 07:37:33 +00:00
|
|
|
description = "GStreamer Plugin for QUIC"
|
2024-05-02 06:59:33 +00:00
|
|
|
rust-version.workspace = true
|
2022-12-10 07:37:33 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-02 06:59:33 +00:00
|
|
|
gst.workspace = true
|
|
|
|
gst-base.workspace = true
|
2022-12-10 07:37:33 +00:00
|
|
|
tokio = { version = "1.36.0", default-features = false, features = ["time", "rt-multi-thread"] }
|
|
|
|
futures = "0.3.30"
|
2024-10-23 12:10:31 +00:00
|
|
|
quinn = { version = "0.11.5", default-features = false, features = ["ring", "rustls", "runtime-tokio"] }
|
|
|
|
quinn-proto ={ version = "0.11.8", default-features = false, features = ["rustls"] }
|
|
|
|
rustls = { version = "0.23", default-features = false, features = ["std"] }
|
2024-05-09 11:49:33 +00:00
|
|
|
rustls-pemfile = "2"
|
|
|
|
rustls-pki-types = "1"
|
|
|
|
rcgen = "0.13"
|
2022-12-10 07:37:33 +00:00
|
|
|
bytes = "1.5.0"
|
|
|
|
thiserror = "1"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-05-02 06:59:33 +00:00
|
|
|
gst-check = { workspace = true, features = ["v1_20"] }
|
2022-12-10 07:37:33 +00:00
|
|
|
serial_test = "3"
|
|
|
|
|
|
|
|
[lib]
|
2024-05-01 12:42:12 +00:00
|
|
|
name = "gstquinn"
|
2022-12-10 07:37:33 +00:00
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
2024-05-02 06:59:33 +00:00
|
|
|
gst-plugin-version-helper.workspace = true
|
2022-12-10 07:37:33 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
static = []
|
|
|
|
capi = []
|
|
|
|
doc = []
|
|
|
|
|
|
|
|
[package.metadata.capi]
|
2024-05-02 06:59:33 +00:00
|
|
|
min_version = "0.9.21"
|
2022-12-10 07:37:33 +00:00
|
|
|
|
|
|
|
[package.metadata.capi.header]
|
|
|
|
enabled = false
|
|
|
|
|
|
|
|
[package.metadata.capi.library]
|
|
|
|
install_subdir = "gstreamer-1.0"
|
|
|
|
versioning = false
|
2024-05-02 06:59:33 +00:00
|
|
|
import_library = false
|
2022-12-10 07:37:33 +00:00
|
|
|
|
|
|
|
[package.metadata.capi.pkg_config]
|
|
|
|
requires_private = "gstreamer-1.0, gstreamer-base-1.0, gobject-2.0, glib-2.0"
|