summaryrefslogtreecommitdiff
path: root/ext/napi
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-01-02 16:00:42 -0500
committerGitHub <noreply@github.com>2023-01-02 21:00:42 +0000
commit10e4b2e14046b74469f7310c599579a6611513fe (patch)
treef6e446cb97d1df8b7413f3bf3a9c897ff487b275 /ext/napi
parentf729576b2db2aa6ce000a598ad2e45533f686213 (diff)
chore: update copyright year to 2023 (#17247)
Yearly tradition of creating extra noise in git.
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;