Skip to content

Commit

Permalink
0.4.1 (also remove unused deps)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgag committed Oct 15, 2017
1 parent 23d22b1 commit 211fff7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 38 deletions.
26 changes: 1 addition & 25 deletions Cargo.lock

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

19 changes: 8 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "loc"
version = "0.4.0"
version = "0.4.1"
description = "Count lines of code (cloc) fast."
authors = ["Curtis Gagliardi <[email protected]>"]

Expand All @@ -11,16 +11,13 @@ documentation = "https://github.com/cgag/loc"
license="MIT"

[dependencies]
clap = "*"
deque = "*"
itertools = "*"
libc = "*"
memchr = "*"
memmap = "*"
regex = "*"
thread-scoped = "*"
num_cpus = "*"
ignore = "*"
clap = "2.26.2"
deque = "0.3.2"
memchr = "1.0.1"
memmap = "0.5.2"
regex = "0.2.2"
num_cpus = "1.7.0"
ignore = "0.2.2"

# [profile.release]
# lto = true
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
extern crate regex;
extern crate memmap;
extern crate memchr;

Expand Down
1 change: 0 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ extern crate loc;
#[macro_use]
extern crate clap;
extern crate deque;
extern crate itertools;
extern crate num_cpus;
extern crate regex;
extern crate ignore;
Expand Down

0 comments on commit 211fff7

Please sign in to comment.