From b91c5d817927d84d8582779367f711e9acb9301b Mon Sep 17 00:00:00 2001 From: Alexandre Bury Date: Thu, 28 May 2020 11:53:16 -0700 Subject: [PATCH] Remove scroll feature for docs.rs --- cursive-core/Cargo.toml | 2 +- cursive/Cargo.toml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/cursive-core/Cargo.toml b/cursive-core/Cargo.toml index e1dfae5..6e658dc 100644 --- a/cursive-core/Cargo.toml +++ b/cursive-core/Cargo.toml @@ -12,7 +12,7 @@ version = "0.1.1-alpha.0" edition = "2018" [package.metadata.docs.rs] -features = ["unstable_scroll", "scroll", "markdown"] +features = ["unstable_scroll", "markdown", "toml"] [badges.travis-ci] repository = "gyscos/cursive" diff --git a/cursive/Cargo.toml b/cursive/Cargo.toml index b1a87e5..a1bef85 100644 --- a/cursive/Cargo.toml +++ b/cursive/Cargo.toml @@ -11,6 +11,9 @@ repository = "https://github.com/gyscos/cursive" version = "0.15.1-alpha.0" edition = "2018" +[package.metadata.docs.rs] +features = ["unstable_scroll", "markdown", "toml"] + [dependencies] cursive_core = { path = "../cursive-core", version="0.1.1-alpha.0" } crossbeam-channel = "0.4.0"