From afdbc4a3ba7439bd16bab110a0ce9cfb3cdc2b08 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sun, 5 Jun 2016 00:35:43 +0200 Subject: [PATCH] build: Make a static library by default --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 654972f..9908414 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] -name = "rustdemux" +name = "rust_plugin" version = "0.1.0" authors = ["Geoffroy Couprie ", "Guillaume Gomez "] build = "build.rs" [lib] -crate-type = ["dylib"] +crate-type = ["staticlib"] [dependencies] libc = "0.2.0"