From 3cb1dd90155a690b2e90dfad7aca719a6fbb494b Mon Sep 17 00:00:00 2001 From: Vladimir Borisov Date: Thu, 18 Nov 2021 17:30:06 +0200 Subject: [PATCH] Forked MPV; removed crossbeam-utils --- Cargo.lock | 14 +------------- Cargo.toml | 3 +-- 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ab2982a..52efa76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -107,16 +107,6 @@ dependencies = [ "syn", ] -[[package]] -name = "crossbeam-utils" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" -dependencies = [ - "cfg-if", - "lazy_static", -] - [[package]] name = "embed-resource" version = "1.6.3" @@ -268,8 +258,7 @@ checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc" [[package]] name = "mpv" version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e57fd944655bbef6aaab8a154b0f78ed55aaaaf211edf956330c56309236f82" +source = "git+https://github.com/Stremio/mpv-rs.git#3ef09f637803711f474edfe2c73a9f7dd35067e2" dependencies = [ "enum_primitive", "log 0.3.9", @@ -669,7 +658,6 @@ name = "stremio-shell-ng" version = "0.1.0" dependencies = [ "bitflags", - "crossbeam-utils", "embed-resource", "flume", "mpv", diff --git a/Cargo.toml b/Cargo.toml index 55fe8da..a978baa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ winapi = { version = "0.3.9", features = [ ] } webview2 = "0.1.0" webview2-sys = "0.1.0-beta.1" -mpv = "0.2.3" +mpv = { git = "https://github.com/Stremio/mpv-rs.git" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" structopt = "0.3" @@ -21,7 +21,6 @@ urlencoding = "2.1.0" bitflags = "1.2.1" win32job = "1" parse-display = "0.5.1" -crossbeam-utils = "0.8.5" flume = "0.10.9" [build-dependencies]