Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM rust:1.84.1
FROM rust:1.85.1
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -yq curl build-essential jq openssl libssl-dev libpython3-dev python3.11-venv python3-pip
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
hpke:
- rust-hpke
rust:
- 1.84.1
- 1.85.1
- stable

steps:
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.84.1 AS builder
FROM rust:1.85.1 AS builder

ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -yq openssl libssl-dev
Expand Down
2 changes: 1 addition & 1 deletion ohttp-client-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "ohttp-client-cli"
version = "0.1.0"
authors = ["Antoine Delignat-Lavaud <antdl@microsoft.com>, Arthi Gokarn <arthig@microsoft.com>, Kapil Vaswani <kapilv@microsoft.com>, Tien Le <tienle@microsoft.com>"]
edition = "2021"
edition = "2024"

[features]
default = ["rust-hpke"]
Expand Down
2 changes: 1 addition & 1 deletion ohttp-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "ohttp-client"
version = "0.1.0"
authors = ["Antoine Delignat-Lavaud <antdl@microsoft.com>, Arthi Gokarn <arthig@microsoft.com>, Kapil Vaswani <kapilv@microsoft.com>, Tien Le <tienle@microsoft.com>"]
edition = "2021"
edition = "2024"

[features]
default = ["rust-hpke"]
Expand Down
3 changes: 1 addition & 2 deletions ohttp-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,7 @@ async fn get_kms_config(kms_url: String, cert: &str) -> Res<String> {
retries += 1;
trace!(
"Received 202 status code, retrying... (attempt {}/{})",
retries,
max_retries
retries, max_retries
);
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
} else {
Expand Down
2 changes: 1 addition & 1 deletion pyohttp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pyohttp"
version = "0.3.0"
edition = "2021"
edition = "2024"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
Expand Down
2 changes: 1 addition & 1 deletion verifier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "verifier"
version = "0.1.0"
edition = "2021"
edition = "2024"

[dependencies]
base64 = "0.22.1"
Expand Down
2 changes: 1 addition & 1 deletion verifier/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

use base64::{self, engine::general_purpose, Engine};
use base64::{self, Engine, engine::general_purpose};
use openssl::{
ecdsa::EcdsaSig,
hash::{Hasher, MessageDigest},
Expand Down