From 9e4bac559c9ed37ad5e5689fa11c2cef20d3c143 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 30 Jul 2015 16:51:07 +0200 Subject: [PATCH] arrayvec: Make nodrop purely a dev-dependency We generate docs for it, but we don't need it. --- Cargo.toml | 8 ++++---- Makefile | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c6c15a7..80ba0f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,9 +10,9 @@ repository = "https://github.com/bluss/arrayvec" keywords = ["stack", "vector", "array", "container", "data-structure"] -[dependencies] - -nodrop = "0.1" - [dependencies.odds] version = "0.2" + +[dev-dependencies] +nodrop = "0.1" + diff --git a/Makefile b/Makefile index d2f8356..f7f4b7b 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,7 @@ subst: $(DOCCRATES) mkdocs: Cargo.toml cargo doc --features=$(FEATURES) + cargo doc -p nodrop rm -rf ./doc cp -r ./target/doc ./doc -cat ./custom.css >> doc/main.css