Skip to content
This repository has been archived by the owner on Oct 25, 2021. It is now read-only.

Commit

Permalink
workaround Manishearth/rust-clippy#1580
Browse files Browse the repository at this point in the history
  • Loading branch information
vitiral committed Feb 27, 2017
1 parent fbc3381 commit af6238a
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ name = "artifact-app"
readme = "README.md"
repository = "https://github.com/vitiral/artifact"
documentation = "http://vitiral.github.io/artifact/"
version = "0.6.1"
version = "0.6.2"

[dependencies]
ansi_term = "0.7"
Expand Down
Binary file modified src/api/data/web-ui.tar
Binary file not shown.
1 change: 0 additions & 1 deletion src/api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ mod tests;
const WEB_FRONTEND_TAR: &'static [u8] = include_bytes!("data/web-ui.tar");

lazy_static! {
//#[derive(RustcDecodable, RustcEncodable, Serialize, Deserialize, Debug)]
static ref ARTIFACTS: Mutex<Vec<ArtifactData>> = Mutex::new(Vec::new());
static ref PROJECT: Mutex<Project> = Mutex::new(Project::default());
}
Expand Down
Binary file modified src/cmd/data/web-ui-static.tar
Binary file not shown.
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
* */
// need for clippy lints
#![allow(unknown_lints)]
#![allow(zero_ptr)]
#![recursion_limit = "1024"]
// # logger config
extern crate fern;
Expand Down

0 comments on commit af6238a

Please sign in to comment.