24 lines
443 B
TOML
24 lines
443 B
TOML
[package]
|
|
name = "vlc-rs"
|
|
version = "0.3.0"
|
|
authors = ["T. Okubo <t.okubo.rx78+github@gmail.com>"]
|
|
|
|
description = "Rust bindings for libVLC media framework."
|
|
keywords = ["libVLC", "bindings"]
|
|
repository = "https://github.com/garkimasera/vlc-rs"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "vlc"
|
|
crate-type = ["rlib"]
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
libvlc-sys = { path = "libvlc-sys" }
|
|
|
|
[features]
|
|
default = []
|
|
v3_00 = []
|