diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-01-01 14:58:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-01 19:58:21 +0000 |
commit | 7e72f3af6152d4b62c2ea94d025dfa297a6b0cb4 (patch) | |
tree | 76753f501bbede065efca7a0b62b823d64a2d9de /ext/node/ops | |
parent | 8ba828b41e2609c91d993aec464035d62320fdad (diff) |
chore: update copyright to 2024 (#21753)
Diffstat (limited to 'ext/node/ops')
-rw-r--r-- | ext/node/ops/crypto/cipher.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/crypto/dh.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/crypto/digest.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/crypto/mod.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/crypto/primes.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/crypto/x509.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/fs.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/http.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/http2.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/idna.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/ipc.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/mod.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/os/cpus.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/os/mod.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/os/priority.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/require.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/util.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/v8.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/winerror.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/zlib/alloc.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/zlib/brotli.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/zlib/mod.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/zlib/mode.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/zlib/stream.rs | 2 |
24 files changed, 24 insertions, 24 deletions
diff --git a/ext/node/ops/crypto/cipher.rs b/ext/node/ops/crypto/cipher.rs index 26fb55125..ce741ef01 100644 --- a/ext/node/ops/crypto/cipher.rs +++ b/ext/node/ops/crypto/cipher.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 aes::cipher::block_padding::Pkcs7; use aes::cipher::BlockDecryptMut; diff --git a/ext/node/ops/crypto/dh.rs b/ext/node/ops/crypto/dh.rs index 8b756d9a2..f60f84277 100644 --- a/ext/node/ops/crypto/dh.rs +++ b/ext/node/ops/crypto/dh.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 super::primes::Prime; use num_bigint_dig::BigUint; diff --git a/ext/node/ops/crypto/digest.rs b/ext/node/ops/crypto/digest.rs index 685fc32d0..25bb0ab98 100644 --- a/ext/node/ops/crypto/digest.rs +++ b/ext/node/ops/crypto/digest.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::error::type_error; use deno_core::error::AnyError; use deno_core::Resource; diff --git a/ext/node/ops/crypto/mod.rs b/ext/node/ops/crypto/mod.rs index 97c3d76aa..486c34147 100644 --- a/ext/node/ops/crypto/mod.rs +++ b/ext/node/ops/crypto/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. use deno_core::error::generic_error; use deno_core::error::type_error; use deno_core::error::AnyError; diff --git a/ext/node/ops/crypto/primes.rs b/ext/node/ops/crypto/primes.rs index 15aa643ad..5c9f4c768 100644 --- a/ext/node/ops/crypto/primes.rs +++ b/ext/node/ops/crypto/primes.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 num_bigint::BigInt; use num_bigint_dig::RandPrime; diff --git a/ext/node/ops/crypto/x509.rs b/ext/node/ops/crypto/x509.rs index 8966666a1..b5779ffa9 100644 --- a/ext/node/ops/crypto/x509.rs +++ b/ext/node/ops/crypto/x509.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::error::bad_resource_id; use deno_core::error::AnyError; diff --git a/ext/node/ops/fs.rs b/ext/node/ops/fs.rs index b21652634..8e4805f6c 100644 --- a/ext/node/ops/fs.rs +++ b/ext/node/ops/fs.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 std::path::PathBuf; diff --git a/ext/node/ops/http.rs b/ext/node/ops/http.rs index fd593244c..a6d999330 100644 --- a/ext/node/ops/http.rs +++ b/ext/node/ops/http.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::error::type_error; use deno_core::error::AnyError; diff --git a/ext/node/ops/http2.rs b/ext/node/ops/http2.rs index bf295d542..3579ade98 100644 --- a/ext/node/ops/http2.rs +++ b/ext/node/ops/http2.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 std::borrow::Cow; use std::cell::RefCell; diff --git a/ext/node/ops/idna.rs b/ext/node/ops/idna.rs index 988468297..884e812cc 100644 --- a/ext/node/ops/idna.rs +++ b/ext/node/ops/idna.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::error::AnyError; use deno_core::op2; diff --git a/ext/node/ops/ipc.rs b/ext/node/ops/ipc.rs index 9b2b27c71..12e840746 100644 --- a/ext/node/ops/ipc.rs +++ b/ext/node/ops/ipc.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. pub use impl_::*; diff --git a/ext/node/ops/mod.rs b/ext/node/ops/mod.rs index 277e340df..ae798d181 100644 --- a/ext/node/ops/mod.rs +++ b/ext/node/ops/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. pub mod crypto; pub mod fs; diff --git a/ext/node/ops/os/cpus.rs b/ext/node/ops/os/cpus.rs index 5af55372f..5db929961 100644 --- a/ext/node/ops/os/cpus.rs +++ b/ext/node/ops/os/cpus.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::serde::Serialize; diff --git a/ext/node/ops/os/mod.rs b/ext/node/ops/os/mod.rs index bba4ab900..1d3de797b 100644 --- a/ext/node/ops/os/mod.rs +++ b/ext/node/ops/os/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. use crate::NodePermissions; use deno_core::error::type_error; diff --git a/ext/node/ops/os/priority.rs b/ext/node/ops/os/priority.rs index 2d5994705..043928e2a 100644 --- a/ext/node/ops/os/priority.rs +++ b/ext/node/ops/os/priority.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::error::AnyError; diff --git a/ext/node/ops/require.rs b/ext/node/ops/require.rs index ada123686..995feb4a1 100644 --- a/ext/node/ops/require.rs +++ b/ext/node/ops/require.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::anyhow::Context; use deno_core::error::generic_error; diff --git a/ext/node/ops/util.rs b/ext/node/ops/util.rs index 1cb80e0e3..533d51c92 100644 --- a/ext/node/ops/util.rs +++ b/ext/node/ops/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_core::error::AnyError; use deno_core::op2; diff --git a/ext/node/ops/v8.rs b/ext/node/ops/v8.rs index 17af49358..207ea10e9 100644 --- a/ext/node/ops/v8.rs +++ b/ext/node/ops/v8.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::error::AnyError; use deno_core::op2; use deno_core::v8; diff --git a/ext/node/ops/winerror.rs b/ext/node/ops/winerror.rs index b0bc5b221..c0d66f7d0 100644 --- a/ext/node/ops/winerror.rs +++ b/ext/node/ops/winerror.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. /* Copyright Joyent, Inc. and other Node contributors. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/ext/node/ops/zlib/alloc.rs b/ext/node/ops/zlib/alloc.rs index c7fecadd8..d425a18d5 100644 --- a/ext/node/ops/zlib/alloc.rs +++ b/ext/node/ops/zlib/alloc.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. // Workaround for https://github.com/rust-lang/libz-sys/issues/55 // See https://github.com/rust-lang/flate2-rs/blob/31fb07820345691352aaa64f367c1e482ad9cfdc/src/ffi/c.rs#L60 diff --git a/ext/node/ops/zlib/brotli.rs b/ext/node/ops/zlib/brotli.rs index c1a48ac58..bc8aa9a25 100644 --- a/ext/node/ops/zlib/brotli.rs +++ b/ext/node/ops/zlib/brotli.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 brotli::enc::encode::BrotliEncoderParameter; use brotli::ffi::compressor::*; use brotli::ffi::decompressor::ffi::interface::BrotliDecoderResult; diff --git a/ext/node/ops/zlib/mod.rs b/ext/node/ops/zlib/mod.rs index cf004219a..55a2e5863 100644 --- a/ext/node/ops/zlib/mod.rs +++ b/ext/node/ops/zlib/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. use deno_core::error::bad_resource_id; use deno_core::error::type_error; use deno_core::error::AnyError; diff --git a/ext/node/ops/zlib/mode.rs b/ext/node/ops/zlib/mode.rs index da12385e7..753300cc4 100644 --- a/ext/node/ops/zlib/mode.rs +++ b/ext/node/ops/zlib/mode.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. #[derive(Debug)] pub enum Error { diff --git a/ext/node/ops/zlib/stream.rs b/ext/node/ops/zlib/stream.rs index e61c47c1c..afcdcc4d7 100644 --- a/ext/node/ops/zlib/stream.rs +++ b/ext/node/ops/zlib/stream.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 super::mode::Flush; use super::mode::Mode; |