Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release #825

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 28 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustyline"
version = "14.0.0"
version = "15.0.0"
authors = ["Katsu Kawakami <[email protected]>"]
edition = "2021"
description = "Rustyline, a readline implementation based on Antirez's Linenoise"
Expand All @@ -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" }
Expand All @@ -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"
Expand All @@ -39,18 +39,30 @@ 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 }
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]
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ to your `Cargo.toml`:

```toml
[dependencies]
rustyline = "14.0.0"
rustyline = "15.0.0"
```

## Features
Expand Down
9 changes: 7 additions & 2 deletions rustyline-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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)]"
Expand All @@ -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 }