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 bd4fe5213..df6bb9304 100644
--- a/ext/napi/Cargo.toml
+++ b/ext/napi/Cargo.toml
@@ -1,4 +1,4 @@
-# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2024 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 a99997225..5cc23dcd0 100644
--- a/ext/napi/function.rs
+++ b/ext/napi/function.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 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 782635a27..9b09467cd 100644
--- a/ext/napi/lib.rs
+++ b/ext/napi/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 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 0e289fedd..c1607f2c2 100644
--- a/ext/napi/value.rs
+++ b/ext/napi/value.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
use deno_core::v8;
use std::mem::transmute;