diff options
| author | Jokler <jokler@protonmail.com> | 2020-01-07 06:48:43 +0100 |
|---|---|---|
| committer | Jokler <jokler@protonmail.com> | 2020-01-07 06:48:43 +0100 |
| commit | daa895e3be120ba640ca29d7653a03b6a547f4a0 (patch) | |
| tree | 2312ffc926afe064334b5152441d0c71bb5f286e /Cargo.toml | |
| parent | 6ff7cd94cf612e7eb2d54d2a3b754a97899b6a94 (diff) | |
| download | pokebot-daa895e3be120ba640ca29d7653a03b6a547f4a0.tar.gz pokebot-daa895e3be120ba640ca29d7653a03b6a547f4a0.zip | |
Add playlist feature and default channel flag
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 18 |
1 files changed, 11 insertions, 7 deletions
@@ -9,17 +9,21 @@ edition = "2018" [dependencies] tsclientlib = { git = "https://github.com/Jokler/tsclientlib/", branch = "fix-poke" } tsproto-packets = { git = "https://github.com/Jokler/tsclientlib/", branch = "fix-poke" } +log = "0.4.8" +toml = "0.5.5" structopt = "0.2" -tokio = "0.1.0" + +tokio = "0.1" +tokio-process = "0.2.4" +tokio-signal = "0.2" +# Changes enabled features on tsclientlib to fix errors on it tokio2 = { package = "tokio", version = "0.2.0", features = ["tcp", "io-util"] } + +futures01 = { package = "futures", version = "0.1.21" } futures-preview = { version = "=0.3.0-alpha.19", features = ["compat"] } -futures01 = { package = "futures", version = "0.1" } -tokio-signal = "0.2.7" -log = "0.4.8" -gstreamer = "0.15.0" futures-util = "0.3.1" + +gstreamer = "0.15.0" gstreamer-app = "0.15.0" gstreamer-audio = "0.15.0" byte-slice-cast = "0.3.5" -serde = "1.0.104" -toml = "0.5.5" |
