diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fec1e57..c03db44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: strategy: fail-fast: false matrix: - rust: [nightly, beta, stable, 1.56.0] + rust: [nightly, 1.60.0] timeout-minutes: 45 steps: - uses: actions/checkout@v4 @@ -48,20 +48,6 @@ jobs: - run: cargo generate-lockfile -Z minimal-versions - run: cargo check --locked - doc: - name: Documentation - needs: pre_ci - if: needs.pre_ci.outputs.continue - runs-on: ubuntu-latest - timeout-minutes: 45 - env: - RUSTDOCFLAGS: -Dwarnings - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@nightly - - uses: dtolnay/install@cargo-docs-rs - - run: cargo docs-rs - clippy: name: Clippy runs-on: ubuntu-latest @@ -85,13 +71,3 @@ jobs: - run: cargo miri test env: MIRIFLAGS: -Zmiri-strict-provenance - - outdated: - name: Outdated - runs-on: ubuntu-latest - if: github.event_name != 'pull_request' - timeout-minutes: 45 - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/install@cargo-outdated - - run: cargo outdated --workspace --exit-code 1 diff --git a/or-rs-macros/Cargo.toml b/or-rs-macros/Cargo.toml index fc4a5f1..dd24881 100644 --- a/or-rs-macros/Cargo.toml +++ b/or-rs-macros/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["either", "macro", "or"] [dependencies] quote = "1" -colored = { version = "1", optional = true } +colored = { version = "2", optional = true } proc-macro2 = { version = "1", optional = true } syn = { version = "2.0", features = ["full"] }