Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing derive macro for openssl test. #145

Merged
merged 1 commit into from
Jan 26, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
components: rustfmt
toolchain: 1.66.1
toolchain: 1.70.0
profile: minimal
override: true
- uses: actions-rs/cargo@v1
Expand All @@ -25,7 +25,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
components: clippy
toolchain: 1.66.1
toolchain: 1.70.0
profile: minimal
override: true
- uses: actions-rs/cargo@v1
Expand All @@ -41,7 +41,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
components: clippy
toolchain: 1.66.1
toolchain: 1.70.0
profile: minimal
override: true
- uses: actions-rs/cargo@v1
Expand All @@ -56,7 +56,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.66.1
toolchain: 1.70.0
profile: minimal
override: true
- run: cargo install cargo-readme
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
toolchain:
- 1.66.1
- 1.70.0
- stable
profile:
- name: debug
Expand All @@ -44,7 +44,7 @@ jobs:
fail-fast: false
matrix:
toolchain:
- 1.66.1
- 1.70.0
- stable
profile:
- name: debug
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ categories = [
"hardware-support",
]
exclude = [".gitignore", ".github/*"]
rust-version = "1.66.1"
rust-version = "1.70.0"

[badges]
# See https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
Expand Down Expand Up @@ -71,4 +71,4 @@ byteorder = "1.4.3"
[dev-dependencies]
kvm-ioctls = ">=0.12"
kvm-bindings = ">=0.6"
serial_test = "2.0"
serial_test = "2.0"
2 changes: 1 addition & 1 deletion src/measurement/ovmf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ impl OvmfSevMetadataHeader {

/// OVMF Footer
#[repr(C, packed)]
#[derive(Debug)]
#[derive(Debug, Clone, Copy)]
struct OvmfFooterTableEntry {
/// Size
size: u16,
Expand Down
Loading