summaryrefslogtreecommitdiff
path: root/cli/napi
diff options
context:
space:
mode:
Diffstat (limited to 'cli/napi')
-rw-r--r--cli/napi/async.rs2
-rw-r--r--cli/napi/env.rs2
-rw-r--r--cli/napi/js_native_api.rs2
-rw-r--r--cli/napi/mod.rs2
-rw-r--r--cli/napi/sym/Cargo.toml2
-rw-r--r--cli/napi/sym/lib.rs2
-rw-r--r--cli/napi/threadsafe_functions.rs2
-rw-r--r--cli/napi/util.rs2
8 files changed, 8 insertions, 8 deletions
diff --git a/cli/napi/async.rs b/cli/napi/async.rs
index b84d22272..8fdb4f9d2 100644
--- a/cli/napi/async.rs
+++ b/cli/napi/async.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_runtime::deno_napi::*;
diff --git a/cli/napi/env.rs b/cli/napi/env.rs
index 0adb0481e..1d59b2f95 100644
--- a/cli/napi/env.rs
+++ b/cli/napi/env.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_runtime::deno_napi::*;
use std::os::raw::c_char;
diff --git a/cli/napi/js_native_api.rs b/cli/napi/js_native_api.rs
index 256584a13..0c8bc31d7 100644
--- a/cli/napi/js_native_api.rs
+++ b/cli/napi/js_native_api.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_upper_case_globals)]
diff --git a/cli/napi/mod.rs b/cli/napi/mod.rs
index 0e302a101..f6ee01c2b 100644
--- a/cli/napi/mod.rs
+++ b/cli/napi/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.
#![allow(unused_mut)]
#![allow(non_camel_case_types)]
diff --git a/cli/napi/sym/Cargo.toml b/cli/napi/sym/Cargo.toml
index d6c8bcb60..448c1f00d 100644
--- a/cli/napi/sym/Cargo.toml
+++ b/cli/napi/sym/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 = "napi_sym"
diff --git a/cli/napi/sym/lib.rs b/cli/napi/sym/lib.rs
index 984d7f4bc..9f1bf080e 100644
--- a/cli/napi/sym/lib.rs
+++ b/cli/napi/sym/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.
use proc_macro::TokenStream;
use quote::quote;
diff --git a/cli/napi/threadsafe_functions.rs b/cli/napi/threadsafe_functions.rs
index 1a9704dbe..d692b5bb2 100644
--- a/cli/napi/threadsafe_functions.rs
+++ b/cli/napi/threadsafe_functions.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::futures::channel::mpsc;
use deno_runtime::deno_napi::*;
diff --git a/cli/napi/util.rs b/cli/napi/util.rs
index 2dea03554..1f849c7d2 100644
--- a/cli/napi/util.rs
+++ b/cli/napi/util.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_runtime::deno_napi::*;
use std::cell::Cell;