summaryrefslogtreecommitdiff
path: root/cli/napi
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-01-01 14:58:21 -0500
committerGitHub <noreply@github.com>2024-01-01 19:58:21 +0000
commit7e72f3af6152d4b62c2ea94d025dfa297a6b0cb4 (patch)
tree76753f501bbede065efca7a0b62b823d64a2d9de /cli/napi
parent8ba828b41e2609c91d993aec464035d62320fdad (diff)
chore: update copyright to 2024 (#21753)
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 8add67e1a..115aa742d 100644
--- a/cli/napi/async.rs
+++ b/cli/napi/async.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_runtime::deno_napi::*;
diff --git a/cli/napi/env.rs b/cli/napi/env.rs
index decdd59d6..34948cde3 100644
--- a/cli/napi/env.rs
+++ b/cli/napi/env.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_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 1d71aebbe..764f6fa15 100644
--- a/cli/napi/js_native_api.rs
+++ b/cli/napi/js_native_api.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_upper_case_globals)]
diff --git a/cli/napi/mod.rs b/cli/napi/mod.rs
index ec49b2c72..697ec06e3 100644
--- a/cli/napi/mod.rs
+++ b/cli/napi/mod.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(unused_mut)]
#![allow(non_camel_case_types)]
diff --git a/cli/napi/sym/Cargo.toml b/cli/napi/sym/Cargo.toml
index 6f0ab5a02..771f190fc 100644
--- a/cli/napi/sym/Cargo.toml
+++ b/cli/napi/sym/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 = "napi_sym"
diff --git a/cli/napi/sym/lib.rs b/cli/napi/sym/lib.rs
index cc241ea28..33f039b5f 100644
--- a/cli/napi/sym/lib.rs
+++ b/cli/napi/sym/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.
use proc_macro::TokenStream;
use quote::quote;
diff --git a/cli/napi/threadsafe_functions.rs b/cli/napi/threadsafe_functions.rs
index 96cce7749..2ab488627 100644
--- a/cli/napi/threadsafe_functions.rs
+++ b/cli/napi/threadsafe_functions.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::futures::channel::mpsc;
use deno_core::V8CrossThreadTaskSpawner;
diff --git a/cli/napi/util.rs b/cli/napi/util.rs
index 1f849c7d2..ac6145a8f 100644
--- a/cli/napi/util.rs
+++ b/cli/napi/util.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_runtime::deno_napi::*;
use std::cell::Cell;