Skip to content

Commit 0d2b565

Browse files
committed
Remove deprecated unstable_scroll feature
1 parent ffaf93d commit 0d2b565

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

cursive/Cargo.toml

+10-11
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,16 @@ version = "0.28.1"
5151

5252
[features]
5353
doc-cfg = ["cursive_core/doc-cfg"] # Enable doc_cfg, a nightly-only doc feature.
54-
builder = ["cursive_core/builder"]
55-
blt-backend = ["dep:bear-lib-terminal"]
56-
default = ["crossterm-backend"]
57-
ncurses-backend = ["dep:ncurses", "dep:maplit"]
58-
pancurses-backend = ["dep:pancurses", "dep:maplit"]
59-
termion-backend = ["dep:termion"]
60-
crossterm-backend = ["dep:crossterm"]
61-
markdown = ["cursive_core/markdown"]
62-
ansi = ["cursive_core/ansi"]
63-
unstable_scroll = [] # Deprecated feature, remove in next version
64-
toml = ["cursive_core/toml"]
54+
builder = ["cursive_core/builder"] # Enable the builder module to build views from config blobs.
55+
blt-backend = ["dep:bear-lib-terminal"] # Enable the BearLibTerminal backend. Requires BLT to be installed separately.
56+
default = ["crossterm-backend"] # Defaults to crossterm, supported on windows, linux and macos.
57+
ncurses-backend = ["dep:ncurses", "dep:maplit"] # Enable the ncurses backend.
58+
pancurses-backend = ["dep:pancurses", "dep:maplit"] # Enable the pancurses backend.
59+
termion-backend = ["dep:termion"] # Enable the termion backend.
60+
crossterm-backend = ["dep:crossterm"] # Enable the crossterm backend.
61+
markdown = ["cursive_core/markdown"] # Allows parsing StyledString from markdown text.
62+
ansi = ["cursive_core/ansi"] # Allows parsing StyledString from ANSI-marked up text.
63+
toml = ["cursive_core/toml"] # Allows parsing themes from toml.
6564

6665
[lib]
6766
name = "cursive"

0 commit comments

Comments
 (0)