From 323f129b7ba475701b7e800282b932672704d058 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Mon, 13 Jun 2022 10:22:39 -0500 Subject: [PATCH] #24: Don't use default features when building on docs.rs. --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8bbe63c..898d2c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tts" -version = "0.22.1" +version = "0.22.2" authors = ["Nolan Darilek "] repository = "https://github.com/ndarilek/tts-rs" description = "High-level Text-To-Speech (TTS) interface" @@ -46,3 +46,6 @@ web-sys = { version = "0.3", features = ["EventTarget", "SpeechSynthesis", "Spee [target.'cfg(target_os="android")'.dependencies] jni = "0.19" ndk-glue = "0.6" + +[package.metadata.docs.rs] +no-default-features = true \ No newline at end of file