Skip to content

Commit

Permalink
Bump MSRV to match serenity's
Browse files Browse the repository at this point in the history
  • Loading branch information
GnomedDev committed Nov 28, 2023
1 parent 35205f6 commit 61ea023
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

include:
- name: MSRV
toolchain: 1.63.0
toolchain: 1.74.0
# don't do doctests because they rely on new features for brevity
# copy known Cargo.lock to avoid random dependency MSRV bumps to mess up our test
command: cp .github/Cargo-msrv.lock Cargo.lock && cargo test --all-features --lib --tests
Expand All @@ -40,7 +40,7 @@ jobs:
- name: no features
# don't test examples because they need collector feature
command: cargo test --no-default-features --features serenity/rustls_backend --lib --tests

# - name: all features + simdjson
# command: cargo test --all-features --features serenity/simdjson --lib --tests --examples
# rustflags: -C target-cpu=haswell # needed for simdjson
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
env:
RUSTFLAGS: -C target-cpu=haswell # for simd-json
RUSTDOCFLAGS: --cfg doc_nightly -D rustdoc::broken_intra_doc_links

# If on current/next branch (as opposed to PR or whatever), publish docs to github pages
- name: Move files
if: github.ref == 'refs/heads/current' || github.ref == 'refs/heads/next'
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["kangalio <[email protected]>"]
edition = "2018"
name = "poise"
version = "0.5.7"
rust-version = "1.63.0"
rust-version = "1.74.0"
description = "A Discord bot framework for serenity"
license = "MIT"
repository = "https://github.com/serenity-rs/poise/"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Docs](https://img.shields.io/badge/docs-online-informational)](https://docs.rs/poise/)
[![Docs (git)](https://img.shields.io/badge/docs%20%28git%29-online-informational)](https://serenity-rs.github.io/poise/)
[![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Rust: 1.63+](https://img.shields.io/badge/rust-1.63+-93450a)](https://blog.rust-lang.org/2022/08/11/Rust-1.63.0.html)
[![Rust: 1.74+](https://img.shields.io/badge/rust-1.74+-93450a)](https://blog.rust-lang.org/2023/11/16/Rust-1.74.0.html)

# Poise
Poise is an opinionated Discord bot framework with a few distinctive features:
Expand Down

0 comments on commit 61ea023

Please sign in to comment.