Skip to content

Commit 1f9a334

Browse files
committed
Document MSRV policy
1 parent 5467c65 commit 1f9a334

File tree

5 files changed

+6
-15
lines changed

5 files changed

+6
-15
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.59.0"
2+
channel = "1.61.0"
33
components = ["rustfmt", "rust-src"]

Cargo.lock

Lines changed: 0 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,11 @@ Helix can be installed on MacOS through homebrew:
7676
brew install helix
7777
```
7878

79+
## Minimum Stable Rust Version (MSRV) Policy
80+
81+
Helix follows the MSRV of firefox.
82+
The current MSRV and future changes to the MSRV are listed in the [firefox documentation](https://firefox-source-docs.mozilla.org/writing-rust-code/update-policy.html).
83+
7984
# Contributing
8085

8186
Contributing guidelines can be found [here](./docs/CONTRIBUTING.md).

helix-term/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,6 @@ serde = { version = "1.0", features = ["derive"] }
6767
grep-regex = "0.1.10"
6868
grep-searcher = "0.1.10"
6969

70-
# Remove once retain_mut lands in stable rust
71-
retain_mut = "0.1.7"
72-
7370
[target.'cfg(not(windows))'.dependencies] # https://github.com/vorner/signal-hook/issues/100
7471
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
7572

helix-term/src/ui/picker.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -365,10 +365,6 @@ impl<T: Item> Picker<T> {
365365
.map(|(index, _option)| (index, 0)),
366366
);
367367
} else if pattern.starts_with(&self.previous_pattern) {
368-
// TODO: remove when retain_mut is in stable rust
369-
#[allow(unused_imports, deprecated)]
370-
use retain_mut::RetainMut;
371-
372368
// optimization: if the pattern is a more specific version of the previous one
373369
// then we can score the filtered set.
374370
#[allow(unstable_name_collisions)]

0 commit comments

Comments
 (0)