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 .github/workflows/library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Setup build environment
uses: ./.github/actions/setup-build-environment
with:
rust-toolchain: '1.83.0' # for spdm-rs
rust-toolchain: '1.88.0' # for spdm-rs

- name: Build library crates
run: cargo xtask lib-build
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get update && \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

# Install rustup and a fixed version of Rust.
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.83.0
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.88.0
RUN rustup component add rust-src
RUN cargo install cargo-xbuild
RUN rustup target add x86_64-unknown-none
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This package is the sample code to show the concept of Migration TD in TDX Migra

* Install [Rust](https://www.rust-lang.org/tools/install):
```
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.83.0
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.88.0
```
* Add Rust target required by MigTD:
```
Expand Down
Loading