diff options
author | metamuffin <metamuffin@disroot.org> | 2022-12-11 14:33:17 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-12-11 14:33:17 +0100 |
commit | 43bd492ffe61dfec82c172f3eeda869809aa0932 (patch) | |
tree | 301b8da07ef08da9dffb239c24e30775e97d230d /client-native-gui/Cargo.toml | |
parent | 62172003909956850879dee1252980b2547f8451 (diff) | |
download | keks-meet-43bd492ffe61dfec82c172f3eeda869809aa0932.tar keks-meet-43bd492ffe61dfec82c172f3eeda869809aa0932.tar.bz2 keks-meet-43bd492ffe61dfec82c172f3eeda869809aa0932.tar.zst |
stream playback with libmpv (native client)
Diffstat (limited to 'client-native-gui/Cargo.toml')
-rw-r--r-- | client-native-gui/Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client-native-gui/Cargo.toml b/client-native-gui/Cargo.toml index 3912bc9..e917276 100644 --- a/client-native-gui/Cargo.toml +++ b/client-native-gui/Cargo.toml @@ -10,6 +10,11 @@ async-std = "1.12.0" tokio = { version = "1.21.2", features = ["full"] } env_logger = "0.8" log = "0.4" +anyhow = "1.0.66" +crossbeam-channel = "0.5.6" egui = "0.19.0" eframe = "0.19.0" + +libmpv = { git = "https://github.com/sirno/libmpv-rs.git", branch = "upgrade-libmpv" } + |