diff --git a/Cargo.toml b/Cargo.toml index e670b8f65a4f..57133c142c8e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [package] -name = "rust-clippy" +name = "clippy" version = "0.0.1" authors = ["Manish Goregaokar "] [lib] -name = "rust_clippy" +name = "clippy" crate_type = ["dylib"] diff --git a/examples/box_vec.rs b/examples/box_vec.rs index 468da46f028a..acc47dd0fb53 100644 --- a/examples/box_vec.rs +++ b/examples/box_vec.rs @@ -1,7 +1,7 @@ #![feature(phase)] #[phase(plugin)] -extern crate rust_clippy; +extern crate clippy; pub fn test(foo: Box>) { println!("{}", foo) diff --git a/examples/dlist.rs b/examples/dlist.rs index 91f3423fb442..9efa92fd63a7 100644 --- a/examples/dlist.rs +++ b/examples/dlist.rs @@ -1,7 +1,7 @@ #![feature(phase)] #[phase(plugin)] -extern crate rust_clippy; +extern crate clippy; extern crate collections; use collections::dlist::DList; diff --git a/examples/match_if_let.rs b/examples/match_if_let.rs index bdb6cc8ecfde..b437424101de 100644 --- a/examples/match_if_let.rs +++ b/examples/match_if_let.rs @@ -1,7 +1,7 @@ #![feature(phase)] #[phase(plugin)] -extern crate rust_clippy; +extern crate clippy; fn main(){ diff --git a/examples/toplevel_ref_arg.rs b/examples/toplevel_ref_arg.rs index 0be737f90288..4180ccce9aad 100644 --- a/examples/toplevel_ref_arg.rs +++ b/examples/toplevel_ref_arg.rs @@ -1,7 +1,7 @@ #![feature(phase)] #[phase(plugin)] -extern crate rust_clippy; +extern crate clippy; fn the_answer(ref mut x: u8) { *x = 42;