summaryrefslogtreecommitdiff
path: root/ext/http
diff options
context:
space:
mode:
Diffstat (limited to 'ext/http')
-rw-r--r--ext/http/01_http.js2
-rw-r--r--ext/http/Cargo.toml2
-rw-r--r--ext/http/benches/compressible.rs2
-rw-r--r--ext/http/compressible.rs2
-rw-r--r--ext/http/lib.rs2
-rw-r--r--ext/http/reader_stream.rs2
6 files changed, 6 insertions, 6 deletions
diff --git a/ext/http/01_http.js b/ext/http/01_http.js
index dfb0f206c..a6c1a06fc 100644
--- a/ext/http/01_http.js
+++ b/ext/http/01_http.js
@@ -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 strict";
((window) => {
diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml
index dfb4e5fd6..d163abb62 100644
--- a/ext/http/Cargo.toml
+++ b/ext/http/Cargo.toml
@@ -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.
[package]
name = "deno_http"
diff --git a/ext/http/benches/compressible.rs b/ext/http/benches/compressible.rs
index bdd3bcad8..634b1dae6 100644
--- a/ext/http/benches/compressible.rs
+++ b/ext/http/benches/compressible.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 bencher::{benchmark_group, benchmark_main, Bencher};
use deno_http::compressible::is_content_compressible;
diff --git a/ext/http/compressible.rs b/ext/http/compressible.rs
index d3c1fc7a8..102a4943f 100644
--- a/ext/http/compressible.rs
+++ b/ext/http/compressible.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 phf::phf_set;
use std::str::FromStr;
diff --git a/ext/http/lib.rs b/ext/http/lib.rs
index 812394d94..8719f9de6 100644
--- a/ext/http/lib.rs
+++ b/ext/http/lib.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 async_compression::tokio::write::BrotliEncoder;
use async_compression::tokio::write::GzipEncoder;
diff --git a/ext/http/reader_stream.rs b/ext/http/reader_stream.rs
index 388b8db81..3405dbb4c 100644
--- a/ext/http/reader_stream.rs
+++ b/ext/http/reader_stream.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::pin::Pin;
use std::sync::atomic::AtomicBool;