summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgwenn <45554+gwenn@users.noreply.github.com>2023-06-24 09:13:19 +0200
committerGitHub <noreply@github.com>2023-06-24 09:13:19 +0200
commit3df2ec7fe3ee71f8ed5336f2ea92a9a298502c05 (patch)
tree160ed26f2e43f944c16b9a1414fe313cdfa82da5
parentc2383ec456e46133161ea8dd3e813119e607c1c5 (diff)
parent40d7374bcc04750a98af7a0c8e6ece76124cc54a (diff)
downloadrustyline-3df2ec7fe3ee71f8ed5336f2ea92a9a298502c05.zip
Merge pull request #708 from gwenn/win
Win
-rw-r--r--.github/workflows/rust.yml2
-rw-r--r--Cargo.toml2
-rw-r--r--Features.md2
-rw-r--r--History.md6
4 files changed, 3 insertions, 9 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 9bf9f47..c4e8503 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -41,7 +41,7 @@ jobs:
if: matrix.os != 'windows-latest'
run: cargo test --workspace --all-targets --all-features
- name: Clippy
- run: cargo clippy --workspace -- -D warnings
+ run: cargo clippy --workspace --no-deps -- -D warnings
- name: Format
run: cargo fmt --all -- --check
- name: Check with no default features
diff --git a/Cargo.toml b/Cargo.toml
index ead7455..fcbda98 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -50,7 +50,7 @@ signal-hook = { version = "0.3", optional = true, default-features = false }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["consoleapi", "handleapi", "synchapi", "minwindef", "processenv", "std", "winbase", "wincon", "winuser"] }
scopeguard = "1.1"
-clipboard-win = "4.2.1"
+clipboard-win = "4.5"
[dev-dependencies]
doc-comment = "0.3"
diff --git a/Features.md b/Features.md
index 6bf6e9d..f5123f1 100644
--- a/Features.md
+++ b/Features.md
@@ -23,7 +23,7 @@ Suspend: Control-Z
| prompt-toolkit | | X | |
| reedline | | X | |
| replxx | X | | X |
-| rustyline | | | |
+| rustyline | | X | |
| termwiz | | X | \* |
Editable History: any history entry can be edited and saved\
diff --git a/History.md b/History.md
index 0549dde..25f05f1 100644
--- a/History.md
+++ b/History.md
@@ -30,9 +30,3 @@ PathInfo
path: Path,
modified: SystemTime,
```
-
----
-
-With `termwiz`, you can define your own `History` backend.
-`termwiz` does not specify anything how the history is persisted.
-Only how to access / search history entry.