diff options
Diffstat (limited to 'cli/cache')
-rw-r--r-- | cli/cache/check.rs | 2 | ||||
-rw-r--r-- | cli/cache/common.rs | 2 | ||||
-rw-r--r-- | cli/cache/deno_dir.rs | 2 | ||||
-rw-r--r-- | cli/cache/disk_cache.rs | 2 | ||||
-rw-r--r-- | cli/cache/emit.rs | 2 | ||||
-rw-r--r-- | cli/cache/http_cache.rs | 2 | ||||
-rw-r--r-- | cli/cache/incremental.rs | 2 | ||||
-rw-r--r-- | cli/cache/mod.rs | 2 | ||||
-rw-r--r-- | cli/cache/node.rs | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/cli/cache/check.rs b/cli/cache/check.rs index 51adea9a1..2d9acdf51 100644 --- a/cli/cache/check.rs +++ b/cli/cache/check.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 std::path::Path; diff --git a/cli/cache/common.rs b/cli/cache/common.rs index 94fe383a5..33623bb79 100644 --- a/cli/cache/common.rs +++ b/cli/cache/common.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 std::hash::Hasher; diff --git a/cli/cache/deno_dir.rs b/cli/cache/deno_dir.rs index 217658c15..e802aaacb 100644 --- a/cli/cache/deno_dir.rs +++ b/cli/cache/deno_dir.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 super::DiskCache; diff --git a/cli/cache/disk_cache.rs b/cli/cache/disk_cache.rs index 894b96d2a..b97850204 100644 --- a/cli/cache/disk_cache.rs +++ b/cli/cache/disk_cache.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 super::http_cache::url_to_filename; use super::CACHE_PERM; diff --git a/cli/cache/emit.rs b/cli/cache/emit.rs index 8595627f8..21f382c55 100644 --- a/cli/cache/emit.rs +++ b/cli/cache/emit.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 std::path::PathBuf; diff --git a/cli/cache/http_cache.rs b/cli/cache/http_cache.rs index f4cf3ef11..4be3166c9 100644 --- a/cli/cache/http_cache.rs +++ b/cli/cache/http_cache.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. //! This module is meant to eventually implement HTTP cache //! as defined in RFC 7234 (<https://tools.ietf.org/html/rfc7234>). //! Currently it's a very simplified version to fulfill Deno needs diff --git a/cli/cache/incremental.rs b/cli/cache/incremental.rs index b5c8180c3..2e838e85a 100644 --- a/cli/cache/incremental.rs +++ b/cli/cache/incremental.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 std::collections::HashMap; use std::path::Path; diff --git a/cli/cache/mod.rs b/cli/cache/mod.rs index b0d79400a..68bf1e4c6 100644 --- a/cli/cache/mod.rs +++ b/cli/cache/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. use crate::errors::get_error_class_name; use crate::file_fetcher::FileFetcher; diff --git a/cli/cache/node.rs b/cli/cache/node.rs index d84a25c34..cc93f36e1 100644 --- a/cli/cache/node.rs +++ b/cli/cache/node.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 std::path::Path; |