diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-01-10 21:59:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-10 21:59:07 -0500 |
commit | 2b75a1155906613df16bad9d1eb84f3dc0ba571b (patch) | |
tree | fb6fdea18d774994d902b27c9bc841d2169a0420 /runtime/ops | |
parent | b0821fe9ce017ea1fdec191622f27c31af9c4f0f (diff) |
update copyright to 2021 (#9081)
Diffstat (limited to 'runtime/ops')
-rw-r--r-- | runtime/ops/crypto.rs | 2 | ||||
-rw-r--r-- | runtime/ops/dispatch_minimal.rs | 2 | ||||
-rw-r--r-- | runtime/ops/fetch.rs | 2 | ||||
-rw-r--r-- | runtime/ops/fs.rs | 2 | ||||
-rw-r--r-- | runtime/ops/fs_events.rs | 2 | ||||
-rw-r--r-- | runtime/ops/io.rs | 2 | ||||
-rw-r--r-- | runtime/ops/mod.rs | 2 | ||||
-rw-r--r-- | runtime/ops/net.rs | 2 | ||||
-rw-r--r-- | runtime/ops/net_unix.rs | 2 | ||||
-rw-r--r-- | runtime/ops/os.rs | 2 | ||||
-rw-r--r-- | runtime/ops/permissions.rs | 2 | ||||
-rw-r--r-- | runtime/ops/plugin.rs | 2 | ||||
-rw-r--r-- | runtime/ops/process.rs | 2 | ||||
-rw-r--r-- | runtime/ops/runtime.rs | 2 | ||||
-rw-r--r-- | runtime/ops/signal.rs | 2 | ||||
-rw-r--r-- | runtime/ops/timers.rs | 2 | ||||
-rw-r--r-- | runtime/ops/tls.rs | 2 | ||||
-rw-r--r-- | runtime/ops/tty.rs | 2 | ||||
-rw-r--r-- | runtime/ops/web_worker.rs | 2 | ||||
-rw-r--r-- | runtime/ops/websocket.rs | 2 | ||||
-rw-r--r-- | runtime/ops/worker_host.rs | 2 |
21 files changed, 21 insertions, 21 deletions
diff --git a/runtime/ops/crypto.rs b/runtime/ops/crypto.rs index a73843a33..accd40ab5 100644 --- a/runtime/ops/crypto.rs +++ b/runtime/ops/crypto.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use deno_crypto::op_get_random_values; use deno_crypto::rand::rngs::StdRng; use deno_crypto::rand::SeedableRng; diff --git a/runtime/ops/dispatch_minimal.rs b/runtime/ops/dispatch_minimal.rs index ae8fa819d..01a47e2ab 100644 --- a/runtime/ops/dispatch_minimal.rs +++ b/runtime/ops/dispatch_minimal.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; use deno_core::futures::future::FutureExt; diff --git a/runtime/ops/fetch.rs b/runtime/ops/fetch.rs index 62aaf7a18..e1b43c910 100644 --- a/runtime/ops/fetch.rs +++ b/runtime/ops/fetch.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::http_util; use crate::permissions::Permissions; use deno_fetch::reqwest; diff --git a/runtime/ops/fs.rs b/runtime/ops/fs.rs index c3c97622d..3b0c02083 100644 --- a/runtime/ops/fs.rs +++ b/runtime/ops/fs.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. // Some deserializer fields are only used on Unix and Windows build fails without it use super::io::std_file_resource; use super::io::StreamResource; diff --git a/runtime/ops/fs_events.rs b/runtime/ops/fs_events.rs index 38661e1d4..c97ba0af4 100644 --- a/runtime/ops/fs_events.rs +++ b/runtime/ops/fs_events.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::permissions::Permissions; use deno_core::error::bad_resource_id; diff --git a/runtime/ops/io.rs b/runtime/ops/io.rs index de56f5b55..a8654cc29 100644 --- a/runtime/ops/io.rs +++ b/runtime/ops/io.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use super::dispatch_minimal::minimal_op; use super::dispatch_minimal::MinimalOp; diff --git a/runtime/ops/mod.rs b/runtime/ops/mod.rs index a27122657..0da4b9771 100644 --- a/runtime/ops/mod.rs +++ b/runtime/ops/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. mod dispatch_minimal; pub use dispatch_minimal::MinimalOp; diff --git a/runtime/ops/net.rs b/runtime/ops/net.rs index a2df881e6..6b7e05771 100644 --- a/runtime/ops/net.rs +++ b/runtime/ops/net.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::ops::io::FullDuplexResource; use crate::ops::io::TcpStreamResource; diff --git a/runtime/ops/net_unix.rs b/runtime/ops/net_unix.rs index 23981a7f1..ace66425c 100644 --- a/runtime/ops/net_unix.rs +++ b/runtime/ops/net_unix.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::ops::io::StreamResource; use crate::ops::net::AcceptArgs; diff --git a/runtime/ops/os.rs b/runtime/ops/os.rs index 6fd404a23..0183ffe5f 100644 --- a/runtime/ops/os.rs +++ b/runtime/ops/os.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::permissions::Permissions; use deno_core::error::AnyError; diff --git a/runtime/ops/permissions.rs b/runtime/ops/permissions.rs index 98940dfc1..86ad2206b 100644 --- a/runtime/ops/permissions.rs +++ b/runtime/ops/permissions.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::permissions::Permissions; use deno_core::error::custom_error; diff --git a/runtime/ops/plugin.rs b/runtime/ops/plugin.rs index 953d6f7d2..e972df046 100644 --- a/runtime/ops/plugin.rs +++ b/runtime/ops/plugin.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::metrics::metrics_op; use crate::permissions::Permissions; diff --git a/runtime/ops/process.rs b/runtime/ops/process.rs index b46627e21..e0a9a0795 100644 --- a/runtime/ops/process.rs +++ b/runtime/ops/process.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use super::io::{std_file_resource, StreamResource}; use crate::permissions::Permissions; diff --git a/runtime/ops/runtime.rs b/runtime/ops/runtime.rs index cb3b53d53..b80067031 100644 --- a/runtime/ops/runtime.rs +++ b/runtime/ops/runtime.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::metrics::Metrics; use crate::permissions::Permissions; diff --git a/runtime/ops/signal.rs b/runtime/ops/signal.rs index b3891792c..2f5383525 100644 --- a/runtime/ops/signal.rs +++ b/runtime/ops/signal.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; use deno_core::serde_json::Value; diff --git a/runtime/ops/timers.rs b/runtime/ops/timers.rs index 8037fd698..940a96a8e 100644 --- a/runtime/ops/timers.rs +++ b/runtime/ops/timers.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. //! This module helps deno implement timers. //! diff --git a/runtime/ops/tls.rs b/runtime/ops/tls.rs index 62c8fc441..9c4c9f422 100644 --- a/runtime/ops/tls.rs +++ b/runtime/ops/tls.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use super::io::StreamResource; use super::io::TcpStreamResource; diff --git a/runtime/ops/tty.rs b/runtime/ops/tty.rs index 05536b429..dfde8e0d3 100644 --- a/runtime/ops/tty.rs +++ b/runtime/ops/tty.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use super::io::std_file_resource; use super::io::StreamResource; diff --git a/runtime/ops/web_worker.rs b/runtime/ops/web_worker.rs index d88330a04..aeaece89e 100644 --- a/runtime/ops/web_worker.rs +++ b/runtime/ops/web_worker.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::web_worker::WebWorkerHandle; use crate::web_worker::WorkerEvent; diff --git a/runtime/ops/websocket.rs b/runtime/ops/websocket.rs index 3ecdae088..1563961d7 100644 --- a/runtime/ops/websocket.rs +++ b/runtime/ops/websocket.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::permissions::Permissions; use deno_websocket::op_ws_check_permission; use deno_websocket::op_ws_close; diff --git a/runtime/ops/worker_host.rs b/runtime/ops/worker_host.rs index da00c6e6e..d68fa02e8 100644 --- a/runtime/ops/worker_host.rs +++ b/runtime/ops/worker_host.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::permissions::resolve_fs_allowlist; use crate::permissions::PermissionState; |