forked from ParadoxSpiral/libmpv-rs
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
28 lines (23 loc) · 804 Bytes
/
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
[workspace]
members = ["libmpv-sys"]
[package]
name = "libmpv2"
version = "4.1.0"
edition = "2021"
authors = ["kohsine <kevoh1516@gmail.com>"]
license = "LGPL-2.1"
build = "build.rs"
readme = "README.md"
description = "Libmpv abstraction that's easy to use and can play next to all codecs and containers"
repository = "https://github.com/kohsine/libmpv-rs"
keywords = ["media", "playback", "mpv", "libmpv"]
[dependencies]
libmpv2-sys = { path = "libmpv-sys", version = "4.0.0" }
[dev-dependencies]
crossbeam = "0.8.4"
sdl2 = "0.37.0"
[features]
default = ["protocols", "render"]
protocols = [] # Enable custom protocol callbacks
render = [] # Enable custom rendering
build_libmpv = [] # build libmpv automatically, provided MPV_SOURCE is set