diff --git a/sys/.gitignore b/sys/.gitignore new file mode 100644 index 0000000..a9d37c5 --- /dev/null +++ b/sys/.gitignore @@ -0,0 +1,2 @@ +target +Cargo.lock diff --git a/sys/Cargo.toml b/sys/Cargo.toml new file mode 100644 index 0000000..fe373fe --- /dev/null +++ b/sys/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "ffmpeg-sys" +version = "2.6.2-1" +authors = ["meh. "] +license = "MIT" +description = "FFI bindings to FFmpeg" +repository = "https://github.com/meh/rust-ffmpeg-sys" diff --git a/sys/src/lib.rs b/sys/src/lib.rs new file mode 100644 index 0000000..bdb9d79 --- /dev/null +++ b/sys/src/lib.rs @@ -0,0 +1,4 @@ +#![feature(libc)] +#![allow(non_camel_case_types, raw_pointer_derive, non_snake_case)] + +extern crate libc;