Skip to content

Commit d02ec82

Browse files
committed
Bump crossterm to 0.28.1
1 parent 20a1ef4 commit d02ec82

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

cursive-core/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ version = "0.11"
6969
[features]
7070
default = []
7171
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
7575

7676
[lib]
7777
name = "cursive_core"

cursive/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@ version = "4"
4747

4848
[dependencies.crossterm]
4949
optional = true
50-
version = "0.27"
50+
version = "0.28.1"
5151

5252
[features]
5353
doc-cfg = ["cursive_core/doc-cfg"] # Enable doc_cfg, a nightly-only doc feature.
5454
builder = ["cursive_core/builder"]
55-
blt-backend = ["bear-lib-terminal"]
55+
blt-backend = ["dep:bear-lib-terminal"]
5656
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"]
6161
markdown = ["cursive_core/markdown"]
6262
ansi = ["cursive_core/ansi"]
6363
unstable_scroll = [] # Deprecated feature, remove in next version

cursive/src/backends/blt.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Backend using BearLibTerminal
22
//!
33
//! Requires the `blt-backend` feature.
4-
#![cfg(feature = "bear-lib-terminal")]
4+
#![cfg(feature = "blt-backend")]
55
#![cfg_attr(feature = "doc-cfg", doc(cfg(feature = "blt-backend")))]
66

77
pub use bear_lib_terminal;

cursive/src/backends/crossterm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Backend using the pure-rust crossplatform crossterm library.
22
//!
33
//! Requires the `crossterm-backend` feature.
4-
#![cfg(feature = "crossterm")]
4+
#![cfg(feature = "crossterm-backend")]
55
#![cfg_attr(feature = "doc-cfg", doc(cfg(feature = "crossterm-backend")))]
66

77
use std::{

cursive/src/backends/termion.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Backend using the pure-rust termion library.
22
//!
33
//! Requires the `termion-backend` feature.
4-
#![cfg(feature = "termion")]
4+
#![cfg(feature = "termion-backend")]
55
#![cfg_attr(feature = "doc-cfg", doc(cfg(feature = "termion-backend")))]
66

77
pub use termion;

0 commit comments

Comments
 (0)