File tree 2 files changed +19
-7
lines changed
2 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
3
+ # Version 0.29
4
+
3
5
## Added ⭐
4
6
5
7
- Copy to clipboard using OSC52 (#974 )
8
+ - Derive standard traits for "SetCursorStyle" (#909 )
9
+ - Add query_keyboard_enhancement_flags to read enabled flags (#958 )
10
+ - Add is_ * and as_ * methods to the event enums (#949 )
11
+ - Add a feature flag for derive_more impls (#970 )
12
+ - Update rustix to 1.0 (#982 )
13
+
14
+ ## Breaking ⚠️
15
+
16
+ - Correctly fix KeyModifiers Display impl Properly adding + in between modifiers (#979 )
17
+
6
18
7
19
# Version 0.28.1
8
20
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " crossterm"
3
- version = " 0.28.1 "
3
+ version = " 0.29.0 "
4
4
authors = [" T. Post" ]
5
5
description = " A crossplatform terminal library for manipulating terminals."
6
6
repository = " https://github.com/crossterm-rs/crossterm"
@@ -52,9 +52,9 @@ osc52 = ["dep:base64"]
52
52
53
53
[dependencies ]
54
54
base64 = { version = " 0.22" , optional = true }
55
- bitflags = { version = " 2.3 " }
56
- derive_more = { version = " 1 .0.0" , features = [" is_variant" ], optional = true }
57
- document-features = " 0.2.10 "
55
+ bitflags = { version = " 2.9 " }
56
+ derive_more = { version = " 2 .0.0" , features = [" is_variant" ], optional = true }
57
+ document-features = " 0.2.11 "
58
58
futures-core = { version = " 0.3" , optional = true , default-features = false }
59
59
parking_lot = " 0.12"
60
60
serde = { version = " 1.0" , features = [" derive" ], optional = true }
@@ -76,13 +76,13 @@ signal-hook = { version = "0.3.17", optional = true }
76
76
signal-hook-mio = { version = " 0.2.4" , features = [" support-v1_0" ], optional = true }
77
77
78
78
[dev-dependencies ]
79
- async-std = " 1.12 "
79
+ async-std = " 1.13 "
80
80
futures = " 0.3"
81
81
futures-timer = " 3.0"
82
82
serde_json = " 1.0"
83
- serial_test = " 2 .0.0"
83
+ serial_test = " 3 .0.0"
84
84
temp-env = " 0.3.6"
85
- tokio = { version = " 1.25 " , features = [" full" ] }
85
+ tokio = { version = " 1.44 " , features = [" full" ] }
86
86
87
87
# Examples
88
88
[[example ]]
You can’t perform that action at this time.
0 commit comments