-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
18 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,16 +9,13 @@ authors = ["Wilfred Hughes <[email protected]>"] | |
keywords = ["diff", "syntax"] | ||
categories = ["development-tools", "command-line-utilities", "parser-implementations"] | ||
edition = "2021" | ||
# Goal: support at least 12 months of Rust versions, and also the Rust | ||
# version on Debian stable (see https://tracker.debian.org/pkg/rustc, | ||
# currently 1.63). | ||
# Goal: support at least 12 months of Rust versions, and be | ||
# conservative about upgrades to help packagers. | ||
# | ||
# Unfortunately tree-sitter 0.20.10 has an MSRV[1] of 1.65, and it has | ||
# a bugfix[2] we want. | ||
# | ||
# 1: https://github.com/tree-sitter/tree-sitter/issues/2669 | ||
# 2: https://github.com/Wilfred/difftastic/issues/570 | ||
rust-version = "1.65.0" | ||
# For reference, Debian stable is on 1.63 (see | ||
# https://tracker.debian.org/pkg/rustc) but Debian doesn't currently | ||
# package difftastic. Other distros are somewhat newer. | ||
rust-version = "1.66.0" | ||
include = [ | ||
"/build.rs", | ||
"/src/", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[toolchain] | ||
channel = "1.65" | ||
channel = "1.66" | ||
components = ["rustfmt"] | ||
profile = "minimal" |