aboutsummaryrefslogtreecommitdiff
path: root/src
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 /src
parentbuild(cargo-make): update runner definitions (diff)
downloadwindmark-ed3104f9e4e4f07e36850d7e97cfd8f2e97f956d.tar.xz
windmark-ed3104f9e4e4f07e36850d7e97cfd8f2e97f956d.zip
chore: update copyright headers
Diffstat (limited to 'src')
-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
20 files changed, 20 insertions, 40 deletions
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