From 151911bc47cc96f68c2a1e6e929050a42e5fb74e Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Tue, 6 Feb 2018 11:18:02 -0800 Subject: [PATCH] Try to tell docs.rs to build using the "nightly" feature We need this to put the README.md into the docs, or else the crate description is bare. --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 263e082..e5570e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "curve25519-dalek" -version = "0.15.0" +version = "0.15.1" authors = ["Isis Lovecruft ", "Henry de Valence "] readme = "README.md" @@ -20,6 +20,7 @@ build = "build.rs" [package.metadata.docs.rs] rustdoc-args = ["--html-in-header", ".cargo/registry/src/github.com-1ecc6299db9ec823/curve25519-dalek-0.13.2/rustdoc-include-katex-header.html"] +features = ["nightly"] [badges] travis-ci = { repository = "dalek-cryptography/curve25519-dalek", branch = "master"}