1
1
[package ]
2
2
name = " rustyline"
3
- version = " 14 .0.0"
3
+ version = " 15 .0.0"
4
4
authors = [" Katsu Kawakami <kkawa1570@gmail.com>" ]
5
5
edition = " 2021"
6
6
description = " Rustyline, a readline implementation based on Antirez's Linenoise"
@@ -11,10 +11,7 @@ keywords = ["readline"]
11
11
license = " MIT"
12
12
categories = [" command-line-interface" ]
13
13
14
- exclude = [
15
- " /.github/*" ,
16
- " /rustfmt.toml" ,
17
- ]
14
+ exclude = [" /.github/*" , " /rustfmt.toml" ]
18
15
19
16
[badges ]
20
17
maintenance = { status = " actively-developed" }
@@ -29,7 +26,10 @@ cfg-if = "1.0"
29
26
home = { version = " 0.5.4" , optional = true }
30
27
# For History
31
28
fd-lock = { version = " 4.0.0" , optional = true }
32
- rusqlite = { version = " 0.32.0" , optional = true , default-features = false , features = [" bundled" , " backup" ] }
29
+ rusqlite = { version = " 0.32.0" , optional = true , default-features = false , features = [
30
+ " bundled" ,
31
+ " backup" ,
32
+ ] }
33
33
libc = " 0.2.155"
34
34
log = " 0.4.22"
35
35
unicode-width = " 0.2.0"
@@ -39,18 +39,30 @@ memchr = "2.7"
39
39
radix_trie = { version = " 0.2" , optional = true }
40
40
regex = { version = " 1.10" , optional = true }
41
41
# For derive
42
- rustyline-derive = { version = " 0.10 .0" , optional = true , path = " rustyline-derive" }
42
+ rustyline-derive = { version = " 0.11 .0" , optional = true , path = " rustyline-derive" }
43
43
44
44
[target .'cfg(unix)' .dependencies ]
45
- nix = { version = " 0.29" , default-features = false , features = [" fs" , " ioctl" , " poll" , " signal" , " term" ] }
45
+ nix = { version = " 0.29" , default-features = false , features = [
46
+ " fs" ,
47
+ " ioctl" ,
48
+ " poll" ,
49
+ " signal" ,
50
+ " term" ,
51
+ ] }
46
52
utf8parse = " 0.2"
47
53
skim = { version = " 0.10" , optional = true , default-features = false }
48
54
signal-hook = { version = " 0.3" , optional = true , default-features = false }
49
55
termios = { version = " 0.3.3" , optional = true }
50
56
buffer-redux = { version = " 1.0" , optional = true , default-features = false }
51
57
52
58
[target .'cfg(windows)' .dependencies ]
53
- windows-sys = { version = " 0.59.0" , features = [" Win32_Foundation" , " Win32_System_Console" , " Win32_Security" , " Win32_System_Threading" , " Win32_UI_Input_KeyboardAndMouse" ] }
59
+ windows-sys = { version = " 0.59.0" , features = [
60
+ " Win32_Foundation" ,
61
+ " Win32_System_Console" ,
62
+ " Win32_Security" ,
63
+ " Win32_System_Threading" ,
64
+ " Win32_UI_Input_KeyboardAndMouse" ,
65
+ ] }
54
66
clipboard-win = " 5.0"
55
67
56
68
[dev-dependencies ]
@@ -96,7 +108,13 @@ name = "sqlite_history"
96
108
required-features = [" with-sqlite-history" ]
97
109
98
110
[package .metadata .docs .rs ]
99
- features = [" custom-bindings" , " derive" , " with-dirs" , " with-file-history" , " with-fuzzy" ]
111
+ features = [
112
+ " custom-bindings" ,
113
+ " derive" ,
114
+ " with-dirs" ,
115
+ " with-file-history" ,
116
+ " with-fuzzy" ,
117
+ ]
100
118
all-features = false
101
119
no-default-features = true
102
120
default-target = " x86_64-unknown-linux-gnu"
0 commit comments