[package]
edition = "2024"
name = "mpv-client-cross-sys"
version = "1.2.0"
authors = [
"Kevin Gavrois <kevin@gavrois.fr>",
"BatogiX",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Raw bindings for libmpv client API"
readme = "README.md"
keywords = [
"mpv",
"libmpv",
]
license = "GPL-3.0"
repository = "https://github.com/BatogiX/mpv-client-cross"
[features]
bindgen = [
"dep:bindgen",
"dep:syn",
"dep:quote",
"dep:proc-macro2",
"dep:prettyplease",
]
default = []
[lib]
name = "mpv_client_cross_sys"
path = "src/lib.rs"
[build-dependencies.bindgen]
version = "0.72"
optional = true
[target.'cfg(any(target_os = "windows", target_os = "android"))'.build-dependencies.prettyplease]
version = "0.2"
optional = true
[target.'cfg(any(target_os = "windows", target_os = "android"))'.build-dependencies.proc-macro2]
version = "1"
optional = true
[target.'cfg(any(target_os = "windows", target_os = "android"))'.build-dependencies.quote]
version = "1"
optional = true
[target.'cfg(any(target_os = "windows", target_os = "android"))'.build-dependencies.syn]
version = "2"
features = ["full"]
optional = true