summaryrefslogtreecommitdiff
path: root/ext/napi
diff options
context:
space:
mode:
Diffstat (limited to 'ext/napi')
-rw-r--r--ext/napi/Cargo.toml2
-rw-r--r--ext/napi/function.rs2
-rw-r--r--ext/napi/lib.rs2
-rw-r--r--ext/napi/value.rs2
4 files changed, 4 insertions, 4 deletions
diff --git a/ext/napi/Cargo.toml b/ext/napi/Cargo.toml
index cb3d91567..cf64c45a7 100644
--- a/ext/napi/Cargo.toml
+++ b/ext/napi/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 = "deno_napi"
diff --git a/ext/napi/function.rs b/ext/napi/function.rs
index edeed2566..aec402149 100644
--- a/ext/napi/function.rs
+++ b/ext/napi/function.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::*;
#[repr(C)]
diff --git a/ext/napi/lib.rs b/ext/napi/lib.rs
index 11619398d..24d7c7c11 100644
--- a/ext/napi/lib.rs
+++ b/ext/napi/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.
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
diff --git a/ext/napi/value.rs b/ext/napi/value.rs
index bb3966593..0e289fedd 100644
--- a/ext/napi/value.rs
+++ b/ext/napi/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 deno_core::v8;
use std::mem::transmute;