From ed3104f9e4e4f07e36850d7e97cfd8f2e97f956d Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 18 Apr 2023 21:49:46 +0000 Subject: chore: update copyright headers --- src/context.rs | 3 +-- src/context/error.rs | 3 +-- src/context/hook.rs | 3 +-- src/context/route.rs | 3 +-- src/handler.rs | 3 +-- src/handler/hooks.rs | 3 +-- src/handler/hooks/post_route.rs | 3 +-- src/handler/hooks/pre_route.rs | 3 +-- src/handler/partial.rs | 3 +-- src/handler/response.rs | 3 +-- src/handler/response/error.rs | 3 +-- src/handler/response/route.rs | 3 +-- src/lib.rs | 3 +-- src/module.rs | 3 +-- src/module/asynchronous.rs | 3 +-- src/module/sync.rs | 3 +-- src/response.rs | 3 +-- src/response/macros.rs | 3 +-- src/router.rs | 3 +-- src/utilities.rs | 3 +-- 20 files changed, 20 insertions(+), 40 deletions(-) (limited to 'src') 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // 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 . -// Copyright (C) 2022-2022 Fuwn // // 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 . // -// Copyright (C) 2022-2022 Fuwn +// Copyright (C) 2022-2023 Fuwn // SPDX-License-Identifier: GPL-3.0-only //! Utilities to make cumbersome tasks simpler -- cgit v1.2.3