Skip to content

Commit

Permalink
Merge pull request #21 from Mcat12/tweak/remove-log
Browse files Browse the repository at this point in the history
Remove log from the dependencies
  • Loading branch information
pyros2097 authored Jun 1, 2018
2 parents 10a5896 + c5d664e commit dad74ef
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ proc-macro = true
[dependencies]
syn = "0.11"
quote = "0.3"
log = "0.4"
walkdir = "2.1.4"

[dev-dependencies]
Expand Down
4 changes: 1 addition & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#![recursion_limit = "1024"]
#[macro_use]
extern crate log;
extern crate proc_macro;
#[macro_use]
extern crate quote;
Expand Down Expand Up @@ -119,7 +117,7 @@ fn impl_rust_embed(ast: &syn::DeriveInput) -> Tokens {
panic!("#[derive(RustEmbed)] attribute value must be a string literal");
}
};
info!("folder: {}", folder_path);
println!("folder: {}", folder_path);
generate_assets(ident, folder_path)
}

Expand Down
2 changes: 0 additions & 2 deletions tests/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#![feature(attr_literals)]
#[macro_use]
extern crate log;
#[macro_use]
extern crate rust_embed;

#[test]
Expand Down

0 comments on commit dad74ef

Please sign in to comment.