30 lines
638 B
TOML
30 lines
638 B
TOML
|
[package]
|
||
|
name = "libvlc-sys"
|
||
|
version = "0.2.0"
|
||
|
authors = ["T. Okubo <t.okubo.rx78+devel@gmail.com>"]
|
||
|
|
||
|
description = "libVLC C API"
|
||
|
keywords = ["libVLC", "bindings"]
|
||
|
categories = ["external-ffi-bindings", "multimedia"]
|
||
|
documentation = "https://docs.rs/vlc-rs"
|
||
|
repository = "https://code.videolan.org/videolan/vlc-rs"
|
||
|
homepage = "https://code.videolan.org/videolan/vlc-rs"
|
||
|
license = "MIT"
|
||
|
edition = "2018"
|
||
|
build = "build.rs"
|
||
|
|
||
|
[lib]
|
||
|
name = "vlc_sys"
|
||
|
crate-type = ["rlib"]
|
||
|
|
||
|
[dependencies]
|
||
|
libc = "0.2"
|
||
|
|
||
|
[build-dependencies]
|
||
|
bindgen = {version = "0.59", optional = true }
|
||
|
pkg-config = "0.3"
|
||
|
|
||
|
[features]
|
||
|
default = []
|
||
|
use-bindgen = ["bindgen"]
|