diff --git a/.gitignore b/.gitignore index 68008fe3..d909355c 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/Cargo.toml b/Cargo.toml index a0634af4..2517a434 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,7 @@ name = "reedline" version = "0.17.0" authors = ["The Nushell Project Developers", "JT "] 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"] -