forked from kixelated/moq-gst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (29 loc) · 938 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "moq-gst-ietf"
description = "Media over QUIC - gstreamer plugin"
authors = ["Luke Curley"]
repository = "https://github.com/englishm/moq-gst"
license = "MIT OR Apache-2.0"
version = "0.1.0"
edition = "2021"
keywords = ["quic", "http3", "webtransport", "media", "live"]
categories = ["multimedia", "network-programming", "web-programming"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
moq-transport = "0.8"
moq-native-ietf = "0.5"
moq-pub = "0.8"
gst = { package = "gstreamer", version = "0.23" }
gst-base = { package = "gstreamer-base", version = "0.23" }
once_cell = "1"
bytes = "1"
url = "2"
tokio = { version = "1", features = ["full"] }
env_logger = "0.11"
anyhow = { version = "1", features = ["backtrace"] }
[build-dependencies]
gst-plugin-version-helper = "0.8"
[lib]
name = "gstmoqietf"
crate-type = ["cdylib","rlib"]
path = "src/lib.rs"