forked from Me-TV/Me-TV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (52 loc) · 1.9 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "me-tv"
version = "3.1.1"
authors = ["Russel Winder <[email protected]>"]
categories = ["desktop applications"]
keywords = ["dvb", "video", "audio", "player", "atsc"]
license = "GPL-3.0"
description = "Me TV is a GTK+/GStreamer desktop application for playing DVB, digital video broadcasting."
readme = "README.md"
edition = "2018"
[dependencies]
chrono = "*"
clap = "*"
ctrlc = {version = "*", features = ["termination"]}
exitcode = "*"
fragile = "*"
#
#gdk = "*"
#gdk-pixbuf = "*"
#gio = version="*"
#glib = version="*"
#gtk = {version="*", features=["v3_16"]} # GLArea requires this version or later.
gdk = {git="https://github.com/gtk-rs/gtk-rs"}
gdk-pixbuf = {git="https://github.com/gtk-rs/gtk-rs"}
gio = {git="https://github.com/gtk-rs/gtk-rs"}
glib = {git="https://github.com/gtk-rs/gtk-rs"}
gtk = {git="https://github.com/gtk-rs/gtk-rs", features=["v3_16"]} # GLArea requires this version or later.
#
#gst = {package="gstreamer", version = "*", features = ["v1_16"]}
#gst-mpegts = {package="gstreamer-mpegts", version="*", features = ["v1_16"]}
#gst = {package="gstreamer", git="https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_16"]}
#gst-mpegts = {package="gstreamer-mpegts", git="https://gitlab.freedesktop.org/gstreamer/gstreamer-rs", features = ["v1_16"]}
gst = {package="gstreamer", git="https://gitlab.freedesktop.org/Russel/gstreamer-rs", branch="mpegts_addition", features = ["v1_16"]}
gst-mpegts = {package="gstreamer-mpegts", git="https://gitlab.freedesktop.org/Russel/gstreamer-rs", branch="mpegts_addition", features = ["v1_16"]}
#
glob = "*"
lazy_static = "*"
libc = "*"
nix = "*"
notify = "*"
percent-encoding = "*"
regex= "*"
rust-ini= "*"
serde = "*" # Not used explicitly yet must be listed explicitly.
serde_derive = "*"
serde_yaml = "*"
tempfile = "*"
time = "0.1" # chrono 0.4.19 requires time 0.1.43, not 0.2.*
xdg = "*"
[dev-dependencies]
quickcheck = "*"
rstest = "*"