Commit d02ec82 1 parent 20a1ef4 commit d02ec82 Copy full SHA for d02ec82
File tree 5 files changed +12
-12
lines changed
5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -69,9 +69,9 @@ version = "0.11"
69
69
[features ]
70
70
default = []
71
71
doc-cfg = [] # Add doc-centric features
72
- builder = [" inventory" , " cursive-macros/builder" ] # Enable building views from configs
73
- markdown = [" pulldown-cmark" ] # Enables a markdown-to-styled string parser
74
- ansi = [" ansi-parser" ] # Enables an ansi-to-styled string parser
72
+ builder = [" dep: inventory" , " cursive-macros/builder" ] # Enable building views from configs
73
+ markdown = [" dep: pulldown-cmark" ] # Enables a markdown-to-styled string parser
74
+ ansi = [" dep: ansi-parser" ] # Enables an ansi-to-styled string parser
75
75
76
76
[lib ]
77
77
name = " cursive_core"
Original file line number Diff line number Diff line change @@ -47,17 +47,17 @@ version = "4"
47
47
48
48
[dependencies .crossterm ]
49
49
optional = true
50
- version = " 0.27 "
50
+ 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
54
builder = [" cursive_core/builder" ]
55
- blt-backend = [" bear-lib-terminal" ]
55
+ blt-backend = [" dep: bear-lib-terminal" ]
56
56
default = [" crossterm-backend" ]
57
- ncurses-backend = [" ncurses" , " maplit" ]
58
- pancurses-backend = [" pancurses" , " maplit" ]
59
- termion-backend = [" termion" ]
60
- crossterm-backend = [" crossterm" ]
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
61
markdown = [" cursive_core/markdown" ]
62
62
ansi = [" cursive_core/ansi" ]
63
63
unstable_scroll = [] # Deprecated feature, remove in next version
Original file line number Diff line number Diff line change 1
1
//! Backend using BearLibTerminal
2
2
//!
3
3
//! Requires the `blt-backend` feature.
4
- #![ cfg( feature = "bear-lib-terminal " ) ]
4
+ #![ cfg( feature = "blt-backend " ) ]
5
5
#![ cfg_attr( feature = "doc-cfg" , doc( cfg( feature = "blt-backend" ) ) ) ]
6
6
7
7
pub use bear_lib_terminal;
Original file line number Diff line number Diff line change 1
1
//! Backend using the pure-rust crossplatform crossterm library.
2
2
//!
3
3
//! Requires the `crossterm-backend` feature.
4
- #![ cfg( feature = "crossterm" ) ]
4
+ #![ cfg( feature = "crossterm-backend " ) ]
5
5
#![ cfg_attr( feature = "doc-cfg" , doc( cfg( feature = "crossterm-backend" ) ) ) ]
6
6
7
7
use std:: {
Original file line number Diff line number Diff line change 1
1
//! Backend using the pure-rust termion library.
2
2
//!
3
3
//! Requires the `termion-backend` feature.
4
- #![ cfg( feature = "termion" ) ]
4
+ #![ cfg( feature = "termion-backend " ) ]
5
5
#![ cfg_attr( feature = "doc-cfg" , doc( cfg( feature = "termion-backend" ) ) ) ]
6
6
7
7
pub use termion;
You can’t perform that action at this time.
0 commit comments