Skip to content

Commit

Permalink
bump rust
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilgardis committed Apr 5, 2024
1 parent 04ccee7 commit da38175
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@v1
with:
toolchain: 1.64
toolchain: 1.74
components: clippy
- name: Install rust matcher
run: echo "::add-matcher::.github/rust.json"
Expand Down
7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ description = "Bot to send twitch moderator actions to a discord webhook"
publish = false
repository = "https://github.com/Emilgardis/twitch_discord_moderation"
build = "build.rs"
rust-version = "1.74"

[dependencies]
tokio = { version = "1.21.2", features = ["full"] }
Expand All @@ -25,7 +26,11 @@ anyhow = "1.0.66"
chrono = "0.4.22"
owo-colors = "4"
dotenvy = "0.15.7"
twitch_api = { git = "https://github.com/twitch-rs/twitch_api.git", features = ["reqwest", "helix", "pubsub"] }
twitch_api = { git = "https://github.com/twitch-rs/twitch_api.git", features = [
"reqwest",
"helix",
"pubsub",
] }
async-tungstenite = { version = "0.25.1", features = ["tokio-native-tls"] }
reqwest = { version = "0.12.2", features = ["json"] }
url = "2.3.1"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:1.2
FROM lukemathwalker/cargo-chef:latest-rust-1.64-alpine3.16 as chef
FROM lukemathwalker/cargo-chef:latest-rust-1.74-alpine3.16 as chef
WORKDIR /app
ARG BUILD_DEPS
RUN apk add --no-cache ${BUILD_DEPS}
Expand Down

0 comments on commit da38175

Please sign in to comment.