Switch to cdylib crate type

This commit is contained in:
Sebastian Dröge 2016-08-22 23:03:45 +03:00
parent 6f6e56a5e3
commit 3d83de761f
2 changed files with 2 additions and 2 deletions

View file

@ -17,5 +17,5 @@ pkg-config = "0.3"
[lib] [lib]
name = "rsplugin" name = "rsplugin"
crate-type = ["dylib"] crate-type = ["cdylib"]
path = "src/lib.rs" path = "src/lib.rs"

View file

@ -16,7 +16,7 @@
// Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, // Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
// Boston, MA 02110-1301, USA. // Boston, MA 02110-1301, USA.
#![crate_type="dylib"] #![crate_type="cdylib"]
extern crate libc; extern crate libc;
extern crate url; extern crate url;