diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-01-02 16:00:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-02 21:00:42 +0000 |
commit | 10e4b2e14046b74469f7310c599579a6611513fe (patch) | |
tree | f6e446cb97d1df8b7413f3bf3a9c897ff487b275 /serde_v8/magic | |
parent | f729576b2db2aa6ce000a598ad2e45533f686213 (diff) |
chore: update copyright year to 2023 (#17247)
Yearly tradition of creating extra noise in git.
Diffstat (limited to 'serde_v8/magic')
-rw-r--r-- | serde_v8/magic/buffer.rs | 2 | ||||
-rw-r--r-- | serde_v8/magic/bytestring.rs | 2 | ||||
-rw-r--r-- | serde_v8/magic/detached_buffer.rs | 2 | ||||
-rw-r--r-- | serde_v8/magic/global.rs | 2 | ||||
-rw-r--r-- | serde_v8/magic/mod.rs | 2 | ||||
-rw-r--r-- | serde_v8/magic/rawbytes.rs | 2 | ||||
-rw-r--r-- | serde_v8/magic/string_or_buffer.rs | 2 | ||||
-rw-r--r-- | serde_v8/magic/transl8.rs | 2 | ||||
-rw-r--r-- | serde_v8/magic/v8slice.rs | 2 | ||||
-rw-r--r-- | serde_v8/magic/value.rs | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/serde_v8/magic/buffer.rs b/serde_v8/magic/buffer.rs index 413e56747..862264886 100644 --- a/serde_v8/magic/buffer.rs +++ b/serde_v8/magic/buffer.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use std::fmt::Debug; use std::ops::Deref; diff --git a/serde_v8/magic/bytestring.rs b/serde_v8/magic/bytestring.rs index ebf96031f..92a0dba40 100644 --- a/serde_v8/magic/bytestring.rs +++ b/serde_v8/magic/bytestring.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use super::transl8::{FromV8, ToV8}; use crate::magic::transl8::impl_magic; use crate::Error; diff --git a/serde_v8/magic/detached_buffer.rs b/serde_v8/magic/detached_buffer.rs index cbe8b39c3..7ee4dfb21 100644 --- a/serde_v8/magic/detached_buffer.rs +++ b/serde_v8/magic/detached_buffer.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use core::ops::Range; use std::ops::Deref; diff --git a/serde_v8/magic/global.rs b/serde_v8/magic/global.rs index 4f7b70fdf..52b316fa5 100644 --- a/serde_v8/magic/global.rs +++ b/serde_v8/magic/global.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use crate::magic::transl8::impl_magic; use crate::magic::transl8::FromV8; diff --git a/serde_v8/magic/mod.rs b/serde_v8/magic/mod.rs index 0cac68831..fe4577672 100644 --- a/serde_v8/magic/mod.rs +++ b/serde_v8/magic/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. pub mod buffer; pub mod bytestring; pub mod detached_buffer; diff --git a/serde_v8/magic/rawbytes.rs b/serde_v8/magic/rawbytes.rs index b45143711..2703c7756 100644 --- a/serde_v8/magic/rawbytes.rs +++ b/serde_v8/magic/rawbytes.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. pub(crate) type AtomicPtr<T> = *mut T; #[allow(unused)] pub(crate) struct RawBytes { diff --git a/serde_v8/magic/string_or_buffer.rs b/serde_v8/magic/string_or_buffer.rs index 582314d4b..e3347255e 100644 --- a/serde_v8/magic/string_or_buffer.rs +++ b/serde_v8/magic/string_or_buffer.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use super::buffer::ZeroCopyBuf; use super::transl8::{FromV8, ToV8}; use crate::magic::transl8::impl_magic; diff --git a/serde_v8/magic/transl8.rs b/serde_v8/magic/transl8.rs index 9beb9eade..3a8d0c358 100644 --- a/serde_v8/magic/transl8.rs +++ b/serde_v8/magic/transl8.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. //! Transerialization extends the set of serde-compatible types (for given de/serializers). //! By "hackishly" transmuting references across serde boundaries as u64s. diff --git a/serde_v8/magic/v8slice.rs b/serde_v8/magic/v8slice.rs index a1c01b888..384ccf5c5 100644 --- a/serde_v8/magic/v8slice.rs +++ b/serde_v8/magic/v8slice.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use std::ops::Deref; use std::ops::DerefMut; diff --git a/serde_v8/magic/value.rs b/serde_v8/magic/value.rs index 651e75263..0333d75bc 100644 --- a/serde_v8/magic/value.rs +++ b/serde_v8/magic/value.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use crate::magic::transl8::impl_magic; use crate::magic::transl8::FromV8; |