Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Cargo.toml « gst-plugin-threadshare - gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e42c2c7e5d0e404e3952a61cf0d0c7527b88486a (plain)
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
37
38
39
40
[package]
name = "gst-plugin-threadshare"
version = "0.1.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
license = "LGPL-2.1+"

[dependencies]
glib-sys = { git = "https://github.com/gtk-rs/sys" }
gstreamer-sys = { git = "https://github.com/sdroege/gstreamer-sys" }
glib = { git = "https://github.com/gtk-rs/glib" }
gstreamer = { git = "https://github.com/sdroege/gstreamer-rs" }
gst-plugin = { git = "https://github.com/sdroege/gst-plugin-rs" }
tokio = { git = "https://github.com/sdroege/tokio", branch = "fair-turn" }
tokio-reactor = { git = "https://github.com/sdroege/tokio", branch = "fair-turn" }
tokio-executor = { git = "https://github.com/sdroege/tokio", branch = "fair-turn" }
tokio-timer = { git = "https://github.com/sdroege/tokio", branch = "fair-turn" }
tokio-threadpool = { git = "https://github.com/sdroege/tokio", branch = "fair-turn" }
futures = "0.1"
lazy_static = "1.0"
either = "1.0"
rand = "0.4"

[lib]
name = "gstthreadshare"
crate-type = ["cdylib"]
path = "src/lib.rs"

[profile.release]
lto = true
opt-level = 3
debug = true
panic = 'unwind'

[[example]]
name = "udpsrc-benchmark"
path = "examples/udpsrc_benchmark.rs"

[[example]]
name = "udpsrc-benchmark-sender"
path = "examples/udpsrc_benchmark_sender.rs"