From 4e1b79cb8414b40aefa14c34b0b09da4847e5a62 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Mon, 13 Jun 2022 10:17:18 -0500 Subject: [PATCH] Don't build with default features on docs.rs. --- speech-dispatcher/Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/speech-dispatcher/Cargo.toml b/speech-dispatcher/Cargo.toml index 2e71061..8286e0d 100644 --- a/speech-dispatcher/Cargo.toml +++ b/speech-dispatcher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "speech-dispatcher" -version = "0.13.0" +version = "0.13.1" authors = ["Nolan Darilek "] repository = "https://gitlab.com/ndarilek/speech-dispatcher-rs" description = "Rusty interface to the speech-dispatcher speech synthesis library" @@ -14,3 +14,6 @@ default = ["0_10"] [dependencies] lazy_static = "1" speech-dispatcher-sys = { version = "0.7", path = "../speech-dispatcher-sys" } + +[package.metadata.docs.rs] +no-default-features = true \ No newline at end of file