diff --git a/Cargo.toml b/Cargo.toml index 97734f3d5..d3f87d557 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustyline" -version = "14.0.0" +version = "15.0.0" authors = ["Katsu Kawakami "] edition = "2021" description = "Rustyline, a readline implementation based on Antirez's Linenoise" @@ -11,10 +11,7 @@ keywords = ["readline"] license = "MIT" categories = ["command-line-interface"] -exclude = [ - "/.github/*", - "/rustfmt.toml", -] +exclude = ["/.github/*", "/rustfmt.toml"] [badges] maintenance = { status = "actively-developed" } @@ -29,7 +26,10 @@ cfg-if = "1.0" home = { version = "0.5.4", optional = true } # For History fd-lock = { version = "4.0.0", optional = true } -rusqlite = { version = "0.32.0", optional = true, default-features = false, features = ["bundled", "backup"] } +rusqlite = { version = "0.32.0", optional = true, default-features = false, features = [ + "bundled", + "backup", +] } libc = "0.2.155" log = "0.4.22" unicode-width = "0.2.0" @@ -39,10 +39,16 @@ memchr = "2.7" radix_trie = { version = "0.2", optional = true } regex = { version = "1.10", optional = true } # For derive -rustyline-derive = { version = "0.10.0", optional = true, path = "rustyline-derive" } +rustyline-derive = { version = "0.11.0", optional = true, path = "rustyline-derive" } [target.'cfg(unix)'.dependencies] -nix = { version = "0.29", default-features = false, features = ["fs", "ioctl", "poll", "signal", "term"] } +nix = { version = "0.29", default-features = false, features = [ + "fs", + "ioctl", + "poll", + "signal", + "term", +] } utf8parse = "0.2" skim = { version = "0.10", optional = true, default-features = false } signal-hook = { version = "0.3", optional = true, default-features = false } @@ -50,7 +56,13 @@ termios = { version = "0.3.3", optional = true } buffer-redux = { version = "1.0", optional = true, default-features = false } [target.'cfg(windows)'.dependencies] -windows-sys = { version = "0.59.0", features = ["Win32_Foundation", "Win32_System_Console", "Win32_Security", "Win32_System_Threading", "Win32_UI_Input_KeyboardAndMouse"] } +windows-sys = { version = "0.59.0", features = [ + "Win32_Foundation", + "Win32_System_Console", + "Win32_Security", + "Win32_System_Threading", + "Win32_UI_Input_KeyboardAndMouse", +] } clipboard-win = "5.0" [dev-dependencies] @@ -96,7 +108,13 @@ name = "sqlite_history" required-features = ["with-sqlite-history"] [package.metadata.docs.rs] -features = ["custom-bindings", "derive", "with-dirs", "with-file-history", "with-fuzzy"] +features = [ + "custom-bindings", + "derive", + "with-dirs", + "with-file-history", + "with-fuzzy", +] all-features = false no-default-features = true default-target = "x86_64-unknown-linux-gnu" diff --git a/README.md b/README.md index d6bf9c684..f95d14020 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ to your `Cargo.toml`: ```toml [dependencies] -rustyline = "14.0.0" +rustyline = "15.0.0" ``` ## Features diff --git a/rustyline-derive/Cargo.toml b/rustyline-derive/Cargo.toml index d1596578c..6713b789c 100644 --- a/rustyline-derive/Cargo.toml +++ b/rustyline-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustyline-derive" -version = "0.10.0" +version = "0.11.0" authors = ["gwenn"] edition = "2018" description = "Rustyline macros implementation of #[derive(Completer, Helper, Hinter, Highlighter)]" @@ -19,6 +19,11 @@ maintenance = { status = "actively-developed" } proc-macro = true [dependencies] -syn = { version = "2.0.72", default-features = false, features = ["derive", "parsing", "printing", "proc-macro"] } +syn = { version = "2.0.72", default-features = false, features = [ + "derive", + "parsing", + "printing", + "proc-macro", +] } quote = { version = "1.0.36", default-features = false } proc-macro2 = { version = "1.0.86", default-features = false }