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

Update license copyright year(s) #117

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 alloc/src/allocator.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 The MobileCoin Foundation
// Copyright (c) 2022-2024 The MobileCoin Foundation

use core::alloc::{GlobalAlloc, Layout};
use core::ffi::c_void;
Expand Down
2 changes: 1 addition & 1 deletion alloc/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 The MobileCoin Foundation
// Copyright (c) 2022-2024 The MobileCoin Foundation

#![doc = include_str!("../README.md")]
#![deny(missing_docs, missing_debug_implementations)]
Expand Down
2 changes: 1 addition & 1 deletion io/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022-2023 The MobileCoin Foundation
// Copyright (c) 2022-2024 The MobileCoin Foundation

#![doc = include_str!("../README.md")]
#![deny(missing_docs, missing_debug_implementations)]
Expand Down
2 changes: 1 addition & 1 deletion io/src/write_buffer.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2023 The MobileCoin Foundation
// Copyright (c) 2023-2024 The MobileCoin Foundation

//! Provides a sized buffer which implements the [`fmt::Write`] trait.

Expand Down
2 changes: 1 addition & 1 deletion io/untrusted/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 The MobileCoin Foundation
// Copyright (c) 2022-2024 The MobileCoin Foundation
#![doc = include_str!("../README.md")]
#![deny(missing_docs, missing_debug_implementations)]

Expand Down
2 changes: 1 addition & 1 deletion panic/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022-2023 The MobileCoin Foundation
// Copyright (c) 2022-2024 The MobileCoin Foundation

#![doc = include_str!("../README.md")]
#![deny(missing_docs, missing_debug_implementations)]
Expand Down
2 changes: 1 addition & 1 deletion panic/src/log.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022-2023 The MobileCoin Foundation
// Copyright (c) 2022-2024 The MobileCoin Foundation

//! Logging utilities used during panic handling

Expand Down
2 changes: 1 addition & 1 deletion panic/sys/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022-2023 The MobileCoin Foundation
// Copyright (c) 2022-2024 The MobileCoin Foundation
#![feature(thread_local)]
#![doc = include_str!("../README.md")]
#![deny(missing_docs, missing_debug_implementations, unsafe_code)]
Expand Down
2 changes: 1 addition & 1 deletion panic/sys/src/panicking.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2023 The MobileCoin Foundation
// Copyright (c) 2023-2024 The MobileCoin Foundation

//! Common backend panic implementation
//!
Expand Down
2 changes: 1 addition & 1 deletion panic/sys/src/thread.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2023 The MobileCoin Foundation
// Copyright (c) 2023-2024 The MobileCoin Foundation

//! This is a subset of the functionality available in Rust's std
//! [thread/mod.rs](https://github.com/rust-lang/rust/blob/master/library/std/src/thread/mod.rs)
Expand Down
4 changes: 2 additions & 2 deletions sync/src/condvar.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (c) The Rust Foundation
// Copyright (c) 2023 The MobileCoin Foundation
// Copyright (c) undefined-2024The Rust Foundation
// Copyright (c) 2023-2024 The MobileCoin Foundation

//! condvar.rs implementation more or less copied from
//! [rust source](https://github.com/rust-lang/rust.git) at
Expand Down
2 changes: 1 addition & 1 deletion sync/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2023 The MobileCoin Foundation
// Copyright (c) 2023-2024 The MobileCoin Foundation

#![doc = include_str!("../README.md")]
#![deny(missing_docs, missing_debug_implementations)]
Expand Down
4 changes: 2 additions & 2 deletions sync/src/mutex.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (c) The Rust Foundation
// Copyright (c) 2023 The MobileCoin Foundation
// Copyright (c) undefined-2024The Rust Foundation
// Copyright (c) 2023-2024 The MobileCoin Foundation

//! mutex.rs implementation more or less copied from
//! [rust source](https://github.com/rust-lang/rust.git) at
Expand Down
4 changes: 2 additions & 2 deletions sync/src/poison.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (c) The Rust Foundation
// Copyright (c) 2023 The MobileCoin Foundation
// Copyright (c) undefined-2024The Rust Foundation
// Copyright (c) 2023-2024 The MobileCoin Foundation

//! Poison implementation more or less copied from
//! [rust source](https://github.com/rust-lang/rust.git) at
Expand Down
4 changes: 2 additions & 2 deletions sync/src/rwlock.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (c) The Rust Foundation
// Copyright (c) 2023 The MobileCoin Foundation
// Copyright (c) undefined-2024The Rust Foundation
// Copyright (c) 2023-2024 The MobileCoin Foundation

//! rwlock.rs implementation more or less copied from
//! [rust source](https://github.com/rust-lang/rust.git) at
Expand Down
2 changes: 1 addition & 1 deletion sync/src/sys.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2023 The MobileCoin Foundation
// Copyright (c) 2023-2024 The MobileCoin Foundation

//! Platform specific abstraction.
//!
Expand Down
2 changes: 1 addition & 1 deletion sync/src/sys/locks.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2023 The MobileCoin Foundation
// Copyright (c) 2023-2024 The MobileCoin Foundation

//! Platform specific concurrency locking primitives.

Expand Down
2 changes: 1 addition & 1 deletion sync/src/sys/locks/condvar.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2023 The MobileCoin Foundation
// Copyright (c) 2023-2024 The MobileCoin Foundation

//! Rust condition variable implementation used in SGX environments
use crate::sys::locks::Mutex;
Expand Down
2 changes: 1 addition & 1 deletion sync/src/sys/locks/mutex.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2023 The MobileCoin Foundation
// Copyright (c) 2023-2024 The MobileCoin Foundation

//! Rust mutex implementation used in SGX environments
//!
Expand Down
2 changes: 1 addition & 1 deletion sync/src/sys/locks/rwlock.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2023 The MobileCoin Foundation
// Copyright (c) 2023-2024 The MobileCoin Foundation

//! Rust RwLock implementation used in SGX environments

Expand Down
2 changes: 1 addition & 1 deletion test_enclave/build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 The MobileCoin Foundation
// Copyright (c) 2022-2024 The MobileCoin Foundation
#![doc = include_str!("README.md")]

use bindgen::Builder;
Expand Down
2 changes: 1 addition & 1 deletion test_enclave/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2022 The MobileCoin Foundation
// Copyright (c) 2022-2024 The MobileCoin Foundation
#![allow(non_camel_case_types, non_snake_case, non_upper_case_globals)]

/// The test enclave as bytes.
Expand Down
Loading