diff options
Diffstat (limited to 'serde_v8')
-rw-r--r-- | serde_v8/Cargo.toml | 2 | ||||
-rw-r--r-- | serde_v8/benches/de.rs | 2 | ||||
-rw-r--r-- | serde_v8/benches/ser.rs | 2 | ||||
-rw-r--r-- | serde_v8/de.rs | 2 | ||||
-rw-r--r-- | serde_v8/error.rs | 2 | ||||
-rw-r--r-- | serde_v8/examples/basic.rs | 2 | ||||
-rw-r--r-- | serde_v8/keys.rs | 2 | ||||
-rw-r--r-- | serde_v8/lib.rs | 2 | ||||
-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 | ||||
-rw-r--r-- | serde_v8/payload.rs | 2 | ||||
-rw-r--r-- | serde_v8/ser.rs | 2 | ||||
-rw-r--r-- | serde_v8/serializable.rs | 2 | ||||
-rw-r--r-- | serde_v8/tests/de.rs | 2 | ||||
-rw-r--r-- | serde_v8/tests/magic.rs | 2 | ||||
-rw-r--r-- | serde_v8/tests/ser.rs | 2 | ||||
-rw-r--r-- | serde_v8/utils.rs | 2 |
25 files changed, 25 insertions, 25 deletions
diff --git a/serde_v8/Cargo.toml b/serde_v8/Cargo.toml index e1724827d..b554c26d3 100644 --- a/serde_v8/Cargo.toml +++ b/serde_v8/Cargo.toml @@ -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. [package] name = "serde_v8" diff --git a/serde_v8/benches/de.rs b/serde_v8/benches/de.rs index 72e5799cd..306374043 100644 --- a/serde_v8/benches/de.rs +++ b/serde_v8/benches/de.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 bencher::{benchmark_group, benchmark_main, Bencher}; use serde::Deserialize; diff --git a/serde_v8/benches/ser.rs b/serde_v8/benches/ser.rs index 1bfc6fadc..37951c7f0 100644 --- a/serde_v8/benches/ser.rs +++ b/serde_v8/benches/ser.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 bencher::{benchmark_group, benchmark_main, Bencher}; use serde::Serialize; diff --git a/serde_v8/de.rs b/serde_v8/de.rs index 300b047b7..c3bea36a4 100644 --- a/serde_v8/de.rs +++ b/serde_v8/de.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 serde::de::{self, SeqAccess as _, Visitor}; use serde::Deserialize; diff --git a/serde_v8/error.rs b/serde_v8/error.rs index 661bb68ad..38a67489f 100644 --- a/serde_v8/error.rs +++ b/serde_v8/error.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::{self, Display}; use serde::{de, ser}; diff --git a/serde_v8/examples/basic.rs b/serde_v8/examples/basic.rs index 8f19e9405..f1ea4d6a5 100644 --- a/serde_v8/examples/basic.rs +++ b/serde_v8/examples/basic.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 serde::Deserialize; #[derive(Debug, Deserialize)] diff --git a/serde_v8/keys.rs b/serde_v8/keys.rs index 4811a87f8..d44306fd6 100644 --- a/serde_v8/keys.rs +++ b/serde_v8/keys.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::collections::HashMap; // KeyCache stores a pool struct keys mapped to v8, diff --git a/serde_v8/lib.rs b/serde_v8/lib.rs index 73259a061..e2ec1015d 100644 --- a/serde_v8/lib.rs +++ b/serde_v8/lib.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. mod de; mod error; mod keys; 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; diff --git a/serde_v8/payload.rs b/serde_v8/payload.rs index c9f3e85aa..27f12014f 100644 --- a/serde_v8/payload.rs +++ b/serde_v8/payload.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. // TODO: maybe add a Payload type that holds scope & v8::Value // so it can implement Deserialize by itself diff --git a/serde_v8/ser.rs b/serde_v8/ser.rs index dc3fbd143..67b0d6f68 100644 --- a/serde_v8/ser.rs +++ b/serde_v8/ser.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 serde::ser; use serde::ser::Serialize; diff --git a/serde_v8/serializable.rs b/serde_v8/serializable.rs index f0198fafa..21c7bb752 100644 --- a/serde_v8/serializable.rs +++ b/serde_v8/serializable.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::any::TypeId; use std::mem::transmute_copy; diff --git a/serde_v8/tests/de.rs b/serde_v8/tests/de.rs index 0f2c85d95..c492a6018 100644 --- a/serde_v8/tests/de.rs +++ b/serde_v8/tests/de.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 serde::{Deserialize, Deserializer}; use serde_v8::utils::{js_exec, v8_do}; diff --git a/serde_v8/tests/magic.rs b/serde_v8/tests/magic.rs index 3fc46abeb..54adc6c83 100644 --- a/serde_v8/tests/magic.rs +++ b/serde_v8/tests/magic.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 serde::{Deserialize, Serialize}; use serde_v8::utils::{js_exec, v8_do}; diff --git a/serde_v8/tests/ser.rs b/serde_v8/tests/ser.rs index 0d8d42fe6..9e6c7c2e7 100644 --- a/serde_v8/tests/ser.rs +++ b/serde_v8/tests/ser.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 serde::Serialize; use serde_json::json; use serde_v8::utils::{js_exec, v8_do}; diff --git a/serde_v8/utils.rs b/serde_v8/utils.rs index d491ac093..6a9732400 100644 --- a/serde_v8/utils.rs +++ b/serde_v8/utils.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::sync::Once; pub fn js_exec<'s>( |