29 lines
733 B
TOML
29 lines
733 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", "multimedia"]
|
|
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"
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
rust-version = "1.82"
|
|
|
|
[lib]
|
|
name = "vlc"
|
|
crate-type = ["rlib"]
|
|
|
|
[dependencies]
|
|
libc = "0.2"
|
|
libvlc-sys = { path = "libvlc-sys" }
|
|
|
|
# `xtask` contains maintenance tools; keep it out of the workspace so normal
|
|
# builds never compile it.
|
|
[workspace]
|
|
exclude = ["xtask"]
|