diff options
Diffstat (limited to 'cli/napi')
-rw-r--r-- | cli/napi/async.rs | 2 | ||||
-rw-r--r-- | cli/napi/env.rs | 2 | ||||
-rw-r--r-- | cli/napi/js_native_api.rs | 2 | ||||
-rw-r--r-- | cli/napi/mod.rs | 2 | ||||
-rw-r--r-- | cli/napi/sym/Cargo.toml | 2 | ||||
-rw-r--r-- | cli/napi/sym/lib.rs | 2 | ||||
-rw-r--r-- | cli/napi/threadsafe_functions.rs | 2 | ||||
-rw-r--r-- | cli/napi/util.rs | 2 |
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; |