Skip to content
This repository was archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
chore(workspace): Update to Rust toolchain 1.63.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shanesveller committed Sep 5, 2022
1 parent b5b8c26 commit a59c911
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# https://github.com/LukeMathWalker/cargo-chef/tree/v0.1.35#how-to-use
# https://github.com/LukeMathWalker/cargo-chef/tree/v0.1.35#pre-built-images
FROM lukemathwalker/cargo-chef:0.1.39-rust-1.62.1-slim-buster@sha256:c39a6552970fd4d24f69c659f7edfb1287f9fcb42212692a97157fd5bd2c3f2d AS chef
# https://github.com/LukeMathWalker/cargo-chef/tree/v0.1.41#how-to-use
# https://github.com/LukeMathWalker/cargo-chef/tree/v0.1.41#pre-built-images
FROM lukemathwalker/cargo-chef:0.1.41-rust-1.63.0-slim-buster@sha256:bbe6fac347b4ac1631a0e15cca8cfcb95f396311b5caabdaac9d0fe5fc85065a AS chef
# Cache-bust when this file changes
COPY rust-toolchain.toml /
# See also: /rust-toolchain
RUN rustup toolchain install 1.62.1
RUN rustup toolchain install 1.63.0
RUN apt-get update -qq \
&& apt-get install --no-install-recommends -y \
protobuf-compiler \
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "1.62.1"
channel = "1.63.0"
components = [
"cargo",
"clippy",
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl Default for HttpConfig {

/// Available, named presets for logging style, corresponding closely to
/// [`mod@tracing_subscriber::fmt`]'s available choices.
#[derive(Clone, Copy, Debug, Deserialize, PartialEq)]
#[derive(Clone, Copy, Debug, Deserialize, Eq, PartialEq)]
#[serde(rename_all = "lowercase")]
pub enum LogFormat {
Full,
Expand Down

0 comments on commit a59c911

Please sign in to comment.