diff options
author | gwenn <45554+gwenn@users.noreply.github.com> | 2023-06-24 09:13:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-24 09:13:19 +0200 |
commit | 3df2ec7fe3ee71f8ed5336f2ea92a9a298502c05 (patch) | |
tree | 160ed26f2e43f944c16b9a1414fe313cdfa82da5 | |
parent | c2383ec456e46133161ea8dd3e813119e607c1c5 (diff) | |
parent | 40d7374bcc04750a98af7a0c8e6ece76124cc54a (diff) | |
download | rustyline-3df2ec7fe3ee71f8ed5336f2ea92a9a298502c05.zip |
Merge pull request #708 from gwenn/win
Win
-rw-r--r-- | .github/workflows/rust.yml | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | Features.md | 2 | ||||
-rw-r--r-- | History.md | 6 |
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 @@ -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\ @@ -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. |