Initial commit

This commit is contained in:
meh 2015-05-07 04:28:34 +02:00
commit 8763fd5d4c
3 changed files with 17 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
target
Cargo.lock

10
Cargo.toml Normal file
View File

@ -0,0 +1,10 @@
[package]
name = "ffmpeg"
version = "0.1.0"
authors = ["meh. <meh@schizofreni.co>"]
license = "WTFPL"
[dependencies]
libc = "0.1"
bitflags = "0.1"
ffmpeg-sys = "2.6.2"

5
src/lib.rs Normal file
View File

@ -0,0 +1,5 @@
#![feature(convert)]
extern crate libc;
extern crate ffmpeg_sys as ffi;
#[macro_use] extern crate bitflags;