Skip to content

Commit

Permalink
Remove deprecated unstable_scroll feature
Browse files Browse the repository at this point in the history
  • Loading branch information
gyscos committed Aug 2, 2024
1 parent ffaf93d commit 0d2b565
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions cursive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,16 @@ version = "0.28.1"

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

[lib]
name = "cursive"
Expand Down

0 comments on commit 0d2b565

Please sign in to comment.