aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorTill Hoeppner2015-06-09 00:18:31 +0200
committerTill Hoeppner2015-06-09 00:18:31 +0200
commit9c63c4b89ea0fd889f7f0fd1da71684511e6620e (patch)
treeb50c0598f3aae17f2ab6e8ffad9ef0ba21d6838f /Cargo.toml
parentcd182daf35eae3739511f3751843ad01f0d489b3 (diff)
downloadilc-9c63c4b89ea0fd889f7f0fd1da71684511e6620e.tar.gz
ilc-9c63c4b89ea0fd889f7f0fd1da71684511e6620e.tar.xz
ilc-9c63c4b89ea0fd889f7f0fd1da71684511e6620e.zip
Add basic frequency counter binary
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml13
1 files changed, 13 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f24dfda..6a737f9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,6 +8,11 @@ authors = ["Till Hoeppner <till@hoeppner.ws>"]
name = "ilc"
doc = false
+[[bin]]
+name = "freq"
+path = "src/freq.rs"
+doc = false
+
[dependencies]
regex = "*"
regex_macros = "*"
@@ -16,6 +21,14 @@ docopt = "*"
rustc-serialize = "*"
log = "*"
env_logger = "*"
+bincode = "*"
+
+[dependencies.clippy]
+version = "*"
+optional = true
+
+[features]
+lints = ["clippy"]
[profile.release]
opt-level = 3