rust: Add missing license headers

Command used:

 $ rg --files-without-match --type rust '^// SPDX-Licen' --null | xargs -0 -I {} sed -i '1 i\// SPDX-License-Identifier: MIT\n//\n// Copyright IBM Corp. 2024\n' {}

Reviewed-by: Julian Ruess <julianr@linux.ibm.com>
Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
This commit is contained in:
Marc Hartmayer
2024-12-04 15:18:19 +01:00
committed by Jan Höppner
parent 7d41430e68
commit ea297ecf84
3 changed files with 12 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
// SPDX-License-Identifier: MIT
//
// Copyright IBM Corp. 2024
pub mod additional;
pub mod arcb;
pub mod attest;

View File

@@ -1,3 +1,7 @@
// SPDX-License-Identifier: MIT
//
// Copyright IBM Corp. 2024
use crate::assert_size;
use crate::{
crypto::{sign_msg, verify_signature},

View File

@@ -1,3 +1,7 @@
// SPDX-License-Identifier: MIT
//
// Copyright IBM Corp. 2024
use crate::cli::VerifyOpt;
use anyhow::{anyhow, Context, Result};
use log::warn;