diff --git a/Cargo.toml b/Cargo.toml index e670b8f65a4..57133c142c8 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 468da46f028..acc47dd0fb5 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 91f3423fb44..9efa92fd63a 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 bdb6cc8ecfd..b437424101d 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 0be737f9028..4180ccce9aa 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;