aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-04-18 21:49:46 +0000
committerFuwn <[email protected]>2023-04-18 21:49:46 +0000
commited3104f9e4e4f07e36850d7e97cfd8f2e97f956d (patch)
tree9842c00ad4d3c14b24eca7e108ba6e07c99d511e
parentbuild(cargo-make): update runner definitions (diff)
downloadwindmark-ed3104f9e4e4f07e36850d7e97cfd8f2e97f956d.tar.xz
windmark-ed3104f9e4e4f07e36850d7e97cfd8f2e97f956d.zip
chore: update copyright headers
-rw-r--r--examples/async.rs3
-rw-r--r--examples/async_stateful_module.rs3
-rw-r--r--examples/binary.rs3
-rw-r--r--examples/callbacks.rs3
-rw-r--r--examples/certificate.rs3
-rw-r--r--examples/default_logger.rs3
-rw-r--r--examples/empty.rs3
-rw-r--r--examples/error_handler.rs3
-rw-r--r--examples/fix_path.rs3
-rw-r--r--examples/input.rs3
-rw-r--r--examples/mime.rs3
-rw-r--r--examples/parameters.rs3
-rw-r--r--examples/partial.rs3
-rw-r--r--examples/query.rs3
-rw-r--r--examples/responses.rs3
-rw-r--r--examples/simple_async_std.rs3
-rw-r--r--examples/simple_tokio.rs3
-rw-r--r--examples/stateful_module.rs3
-rw-r--r--examples/stateless_module.rs3
-rw-r--r--src/context.rs3
-rw-r--r--src/context/error.rs3
-rw-r--r--src/context/hook.rs3
-rw-r--r--src/context/route.rs3
-rw-r--r--src/handler.rs3
-rw-r--r--src/handler/hooks.rs3
-rw-r--r--src/handler/hooks/post_route.rs3
-rw-r--r--src/handler/hooks/pre_route.rs3
-rw-r--r--src/handler/partial.rs3
-rw-r--r--src/handler/response.rs3
-rw-r--r--src/handler/response/error.rs3
-rw-r--r--src/handler/response/route.rs3
-rw-r--r--src/lib.rs3
-rw-r--r--src/module.rs3
-rw-r--r--src/module/asynchronous.rs3
-rw-r--r--src/module/sync.rs3
-rw-r--r--src/response.rs3
-rw-r--r--src/response/macros.rs3
-rw-r--r--src/router.rs3
-rw-r--r--src/utilities.rs3
39 files changed, 39 insertions, 78 deletions
diff --git a/examples/async.rs b/examples/async.rs
index 9851f56..d11be86 100644
--- a/examples/async.rs
+++ b/examples/async.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example async`
diff --git a/examples/async_stateful_module.rs b/examples/async_stateful_module.rs
index 7c30e99..09b6cb1 100644
--- a/examples/async_stateful_module.rs
+++ b/examples/async_stateful_module.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example async_stateful_module`
diff --git a/examples/binary.rs b/examples/binary.rs
index 2934105..3255157 100644
--- a/examples/binary.rs
+++ b/examples/binary.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example binary`
diff --git a/examples/callbacks.rs b/examples/callbacks.rs
index d10dab9..58826e2 100644
--- a/examples/callbacks.rs
+++ b/examples/callbacks.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example callbacks`
diff --git a/examples/certificate.rs b/examples/certificate.rs
index e9f1847..7c3d3a5 100644
--- a/examples/certificate.rs
+++ b/examples/certificate.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example certificate`
diff --git a/examples/default_logger.rs b/examples/default_logger.rs
index c4f5b36..17cd559 100644
--- a/examples/default_logger.rs
+++ b/examples/default_logger.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example default_logger --features logger`
diff --git a/examples/empty.rs b/examples/empty.rs
index 7653ec5..02e6254 100644
--- a/examples/empty.rs
+++ b/examples/empty.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example empty`
diff --git a/examples/error_handler.rs b/examples/error_handler.rs
index 5b6ddf6..86ec337 100644
--- a/examples/error_handler.rs
+++ b/examples/error_handler.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example error_handler`
diff --git a/examples/fix_path.rs b/examples/fix_path.rs
index 4b5294b..449f953 100644
--- a/examples/fix_path.rs
+++ b/examples/fix_path.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example fix_path`
diff --git a/examples/input.rs b/examples/input.rs
index de708ca..75e97cb 100644
--- a/examples/input.rs
+++ b/examples/input.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example input`
diff --git a/examples/mime.rs b/examples/mime.rs
index b5127a3..9f592f5 100644
--- a/examples/mime.rs
+++ b/examples/mime.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example mime`
diff --git a/examples/parameters.rs b/examples/parameters.rs
index 50049fd..9d5335b 100644
--- a/examples/parameters.rs
+++ b/examples/parameters.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example parameters`
diff --git a/examples/partial.rs b/examples/partial.rs
index af08f8f..70e05ab 100644
--- a/examples/partial.rs
+++ b/examples/partial.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example partial`
diff --git a/examples/query.rs b/examples/query.rs
index ac2c047..d2c51d4 100644
--- a/examples/query.rs
+++ b/examples/query.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example input`
diff --git a/examples/responses.rs b/examples/responses.rs
index 3cdc3a8..c5d19f8 100644
--- a/examples/responses.rs
+++ b/examples/responses.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example responses`
diff --git a/examples/simple_async_std.rs b/examples/simple_async_std.rs
index cc2b498..9896590 100644
--- a/examples/simple_async_std.rs
+++ b/examples/simple_async_std.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example simple_async_std --features async-std`
diff --git a/examples/simple_tokio.rs b/examples/simple_tokio.rs
index 21b2a98..1c9acec 100644
--- a/examples/simple_tokio.rs
+++ b/examples/simple_tokio.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example simple_tokio --features tokio`
diff --git a/examples/stateful_module.rs b/examples/stateful_module.rs
index d97f139..df13206 100644
--- a/examples/stateful_module.rs
+++ b/examples/stateful_module.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example stateful_module`
diff --git a/examples/stateless_module.rs b/examples/stateless_module.rs
index 5daa0e2..f43ce16 100644
--- a/examples/stateless_module.rs
+++ b/examples/stateless_module.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! `cargo run --example stateless_module`
diff --git a/src/context.rs b/src/context.rs
index 68b83fa..4f97393 100644
--- a/src/context.rs
+++ b/src/context.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
#![allow(clippy::module_name_repetitions)]
diff --git a/src/context/error.rs b/src/context/error.rs
index 3540a45..789fb63 100644
--- a/src/context/error.rs
+++ b/src/context/error.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
use openssl::x509::X509;
diff --git a/src/context/hook.rs b/src/context/hook.rs
index b7fb4ec..d033234 100644
--- a/src/context/hook.rs
+++ b/src/context/hook.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
use std::collections::HashMap;
diff --git a/src/context/route.rs b/src/context/route.rs
index d1b86a6..e5a401d 100644
--- a/src/context/route.rs
+++ b/src/context/route.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
use std::collections::HashMap;
diff --git a/src/handler.rs b/src/handler.rs
index 2f25f3e..2678c81 100644
--- a/src/handler.rs
+++ b/src/handler.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
mod hooks;
diff --git a/src/handler/hooks.rs b/src/handler/hooks.rs
index 591a598..34ea42e 100644
--- a/src/handler/hooks.rs
+++ b/src/handler/hooks.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
mod post_route;
diff --git a/src/handler/hooks/post_route.rs b/src/handler/hooks/post_route.rs
index 63a20b9..8a92fc6 100644
--- a/src/handler/hooks/post_route.rs
+++ b/src/handler/hooks/post_route.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
use crate::{context::HookContext, Response};
diff --git a/src/handler/hooks/pre_route.rs b/src/handler/hooks/pre_route.rs
index ff6162f..4221f14 100644
--- a/src/handler/hooks/pre_route.rs
+++ b/src/handler/hooks/pre_route.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
use crate::context::HookContext;
diff --git a/src/handler/partial.rs b/src/handler/partial.rs
index aa433e1..913fa07 100644
--- a/src/handler/partial.rs
+++ b/src/handler/partial.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
use crate::context::RouteContext;
diff --git a/src/handler/response.rs b/src/handler/response.rs
index 737fb5e..b1ccae7 100644
--- a/src/handler/response.rs
+++ b/src/handler/response.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
#![allow(clippy::module_name_repetitions)]
diff --git a/src/handler/response/error.rs b/src/handler/response/error.rs
index a1a7885..af73001 100644
--- a/src/handler/response/error.rs
+++ b/src/handler/response/error.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
use async_trait::async_trait;
diff --git a/src/handler/response/route.rs b/src/handler/response/route.rs
index c7df774..2604947 100644
--- a/src/handler/response/route.rs
+++ b/src/handler/response/route.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
use async_trait::async_trait;
diff --git a/src/lib.rs b/src/lib.rs
index 1682da0..567655b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
#![deny(
diff --git a/src/module.rs b/src/module.rs
index e9ac743..0f8aee9 100644
--- a/src/module.rs
+++ b/src/module.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
mod asynchronous;
diff --git a/src/module/asynchronous.rs b/src/module/asynchronous.rs
index ea69d60..f94a0b6 100644
--- a/src/module/asynchronous.rs
+++ b/src/module/asynchronous.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
use crate::{context::HookContext, Router};
diff --git a/src/module/sync.rs b/src/module/sync.rs
index 0628dfa..8c181be 100644
--- a/src/module/sync.rs
+++ b/src/module/sync.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
use crate::{context::HookContext, Router};
diff --git a/src/response.rs b/src/response.rs
index 90950da..797ce2a 100644
--- a/src/response.rs
+++ b/src/response.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! Content and response handlers
diff --git a/src/response/macros.rs b/src/response/macros.rs
index 10f6b06..9f78c41 100644
--- a/src/response/macros.rs
+++ b/src/response/macros.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
macro_rules! sync_response {
diff --git a/src/router.rs b/src/router.rs
index 8df8c03..b103197 100644
--- a/src/router.rs
+++ b/src/router.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
#![allow(clippy::significant_drop_tightening)]
diff --git a/src/utilities.rs b/src/utilities.rs
index aa14292..1d5fd79 100644
--- a/src/utilities.rs
+++ b/src/utilities.rs
@@ -1,5 +1,4 @@
// This file is part of Windmark <https://github.com/gemrest/windmark>.
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -13,7 +12,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
-// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// Copyright (C) 2022-2023 Fuwn <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only
//! Utilities to make cumbersome tasks simpler