diff --git a/Cargo.toml b/Cargo.toml index 34029620..8f51aa57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,9 @@ [package] - name = "nalgebra" version = "0.1.0" authors = [ "Sébastien Crozet " ] # FIXME: add the contributors. [[lib]] - name = "nalgebra" -crate_type = [ "dylib", "staticlib" ] +crate_type = [ "dylib", "staticlib", "rlib" ] path = "src/lib.rs" diff --git a/src/lib.rs b/src/lib.rs index 942166d2..47ed6b36 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -97,7 +97,6 @@ Feel free to add your project to this list if you happen to use **nalgebra**! */ #![crate_name = "nalgebra"] -#![crate_type = "lib"] #![deny(non_camel_case_types)] #![deny(unnecessary_parens)] #![deny(non_uppercase_statics)]