53 lines
1.2 KiB
TOML
53 lines
1.2 KiB
TOML
[package]
|
|
authors = ["Jordan Petridis <jordanpetridis@protonmail.com>"]
|
|
build = "build.rs"
|
|
name = "podcasts-gtk"
|
|
version = "0.1.0"
|
|
workspace = "../"
|
|
|
|
[dependencies]
|
|
chrono = "0.4.6"
|
|
crossbeam-channel = "0.2.6"
|
|
gdk = "0.9.0"
|
|
gdk-pixbuf = "0.5.0"
|
|
glib = "0.6.0"
|
|
gstreamer = "0.12.0"
|
|
gstreamer-player = "0.12.0"
|
|
humansize = "1.1.0"
|
|
lazy_static = "1.1.0"
|
|
log = "0.4.4"
|
|
loggerv = "0.7.1"
|
|
open = "1.2.2"
|
|
rayon = "1.0.2"
|
|
url = "1.7.1"
|
|
failure = "0.1.2"
|
|
failure_derive = "0.1.2"
|
|
fragile = "0.3.0"
|
|
regex = "1.0.4"
|
|
reqwest = "0.9.2"
|
|
serde_json = "1.0.31"
|
|
# html2text = "0.1.8"
|
|
html2text = { git = "https://github.com/alatiera/rust-html2text" }
|
|
gettext-rs = { git = "https://github.com/danigm/gettext-rs", branch = "no-gettext", features = ["gettext-system"] }
|
|
mpris-player = { git = "https://gitlab.gnome.org/World/Rust/mpris-player.git" }
|
|
|
|
[dependencies.gtk]
|
|
features = ["v3_22"]
|
|
version = "0.5.0"
|
|
|
|
[dependencies.gio]
|
|
features = ["v2_50"]
|
|
version = "0.5.0"
|
|
|
|
[dependencies.libhandy]
|
|
git = "https://gitlab.gnome.org/jsparber/libhandy-rs"
|
|
|
|
[dependencies.podcasts-data]
|
|
path = "../podcasts-data"
|
|
|
|
[dependencies.podcasts-downloader]
|
|
path = "../podcasts-downloader"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "0.5.1"
|