Initial commit

This commit is contained in:
meh
2023-05-24 21:49:22 +02:00
committed by Till Höppner
parent 4486c6d4b7
commit 1d9c6e0541
3 changed files with 13 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
target
Cargo.lock
+7
View File
@@ -0,0 +1,7 @@
[package]
name = "ffmpeg-sys"
version = "2.6.2-1"
authors = ["meh. <meh@schizofreni.co>"]
license = "MIT"
description = "FFI bindings to FFmpeg"
repository = "https://github.com/meh/rust-ffmpeg-sys"
+4
View File
@@ -0,0 +1,4 @@
#![feature(libc)]
#![allow(non_camel_case_types, raw_pointer_derive, non_snake_case)]
extern crate libc;