Set MSRV to 1.62.1 (#554)

* Set MSRV to 1.62.1

* Update gitignore file to harmonize it.
This commit is contained in:
Jérémy Audiger 2023-03-17 18:46:43 +01:00 committed by GitHub
parent 5ba547cf51
commit af7b447a06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 3 deletions

18
.gitignore vendored
View File

@ -4,8 +4,22 @@ history.sqlite3*
.DS_Store
target-coverage/
tarpaulin-report.html
.vscode
.helix
# ignore the git mailmap file
.mailmap
# JetBrains' IDE items
.idea/*
# VSCode's IDE items
.vscode/*
# Helix configuration folder
.helix/*
.helix
# Visual Studio
.vs/*
*.rsproj
*.rsproj.user
*.sln

View File

@ -3,6 +3,7 @@ name = "reedline"
version = "0.17.0"
authors = ["The Nushell Project Developers", "JT <jonathan.d.turner@gmail.com>"]
edition = "2021"
rust-version = "1.62.1"
description = "A readline-like crate for CLI text input"
license = "MIT"
repository = "https://github.com/nushell/reedline"
@ -42,4 +43,3 @@ bashisms = []
external_printer = ["crossbeam"]
sqlite = ["rusqlite/bundled", "serde_json"]
sqlite-dynlib = ["rusqlite", "serde_json"]