forked from nushell/nushell
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request nushell#2 from WindSoilder/raw_string_support
Merge from main
- Loading branch information
Showing
1,082 changed files
with
44,515 additions
and
14,932 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
let toolchain_spec = open rust-toolchain.toml | get toolchain.channel | ||
let msrv_spec = open Cargo.toml | get package.rust-version | ||
|
||
# This check is conservative in the sense that we use `rust-toolchain.toml`'s | ||
# override to ensure that this is the upper-bound for the minimum supported | ||
# rust version | ||
if $toolchain_spec != $msrv_spec { | ||
print -e "Mismatching rust compiler versions specified in `Cargo.toml` and `rust-toolchain.toml`" | ||
print -e $"Cargo.toml: ($msrv_spec)" | ||
print -e $"rust-toolchain.toml: ($toolchain_spec)" | ||
exit 1 | ||
} |
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
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
Oops, something went wrong.