From b29f72ceb5251e68588ca232a711cfde5e0359f6 Mon Sep 17 00:00:00 2001 From: Ben Moss Date: Thu, 12 Jan 2023 01:47:46 -0500 Subject: [PATCH] Specify minimum rust version (#1496) --- .github/workflows/ci.yaml | 1 + Cargo.toml | 15 ++++++++------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3b028f3..e0d8ade 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -50,6 +50,7 @@ jobs: sudo apt-get update sudo apt-get install ripgrep ./bin/forbid + pages: runs-on: ubuntu-latest permissions: diff --git a/Cargo.toml b/Cargo.toml index 89570e8..b993d49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,17 +1,18 @@ [package] name = "just" version = "1.11.0" -description = "🤖 Just a command runner" authors = ["Casey Rodarmor "] -license = "CC0-1.0" -homepage = "https://github.com/casey/just" -repository = "https://github.com/casey/just" -readme = "crates-io-readme.md" -edition = "2021" autotests = false categories = ["command-line-utilities", "development-tools"] -keywords = ["command-line", "task", "runner", "development", "utility"] +description = "🤖 Just a command runner" +edition = "2021" exclude = ["/book", "/icon.png", "/screenshot.png", "/www"] +homepage = "https://github.com/casey/just" +keywords = ["command-line", "task", "runner", "development", "utility"] +license = "CC0-1.0" +readme = "crates-io-readme.md" +repository = "https://github.com/casey/just" +rust-version = "1.63" [workspace] members = [".", "bin/ref-type", "bin/generate-book", "bin/update-contributors"]