@@ -51,17 +51,16 @@ version = "0.28.1"
51
51
52
52
[features ]
53
53
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.
65
64
66
65
[lib ]
67
66
name = " cursive"
0 commit comments