From ca508262451f3ed07c8ca33dc34a0fc70d1c9010 Mon Sep 17 00:00:00 2001 From: Joshua Holmer Date: Tue, 8 Mar 2016 12:03:07 -0500 Subject: [PATCH] Mark doc = false on bin to allow cargo doc to work [ci skip] --- Cargo.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 34a4dd61..f6c27e91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,15 @@ exclude = [ "tests/*", ] +[lib] +name = "oxipng" +path = "src/lib.rs" + +[[bin]] +name = "oxipng" +path = "src/main.rs" +doc = false + [dependencies] bit-vec = "^0.4.2" byteorder = "^0.4.0"