diff options
| author | Fuwn <[email protected]> | 2025-06-04 10:25:17 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-04 10:25:17 +0000 |
| commit | cf1e555deb1aab7b9b8288f4e2ff5895bc25b0b0 (patch) | |
| tree | 243a6c6a762f2f2125df8ed020e60ba59a079864 | |
| parent | docs(examples): Remove copyright header (diff) | |
| download | germ-cf1e555deb1aab7b9b8288f4e2ff5895bc25b0b0.tar.xz germ-cf1e555deb1aab7b9b8288f4e2ff5895bc25b0b0.zip | |
docs: Update copyright header year
| -rw-r--r-- | src/ast.rs | 4 | ||||
| -rw-r--r-- | src/ast/container.rs | 4 | ||||
| -rw-r--r-- | src/ast/macros.rs | 4 | ||||
| -rw-r--r-- | src/ast/node.rs | 4 | ||||
| -rw-r--r-- | src/convert.rs | 4 | ||||
| -rw-r--r-- | src/convert/html.rs | 4 | ||||
| -rw-r--r-- | src/convert/macros.rs | 4 | ||||
| -rw-r--r-- | src/convert/markdown.rs | 4 | ||||
| -rw-r--r-- | src/lib.rs | 4 | ||||
| -rw-r--r-- | src/meta.rs | 4 | ||||
| -rw-r--r-- | src/quick.rs | 4 | ||||
| -rw-r--r-- | src/request.rs | 4 | ||||
| -rw-r--r-- | src/request/blocking.rs | 4 | ||||
| -rw-r--r-- | src/request/non_blocking.rs | 4 | ||||
| -rw-r--r-- | src/request/response.rs | 4 | ||||
| -rw-r--r-- | src/request/status.rs | 4 | ||||
| -rw-r--r-- | src/request/verifier.rs | 4 | ||||
| -rw-r--r-- | tests/ast.rs | 4 | ||||
| -rw-r--r-- | tests/convert.rs | 4 | ||||
| -rw-r--r-- | tests/meta.rs | 4 | ||||
| -rw-r--r-- | tests/quick.rs | 4 | ||||
| -rw-r--r-- | tests/status.rs | 4 |
22 files changed, 44 insertions, 44 deletions
@@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only //! Build AST trees from Gemtext diff --git a/src/ast/container.rs b/src/ast/container.rs index c890100..0d20193 100644 --- a/src/ast/container.rs +++ b/src/ast/container.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use {super::Node, std::fmt::Write}; diff --git a/src/ast/macros.rs b/src/ast/macros.rs index 435fd3b..598cfa9 100644 --- a/src/ast/macros.rs +++ b/src/ast/macros.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only /// Convert Gemtext an `Ast` diff --git a/src/ast/node.rs b/src/ast/node.rs index 95190d2..72bc126 100644 --- a/src/ast/node.rs +++ b/src/ast/node.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only /// A Gemtext AST node. diff --git a/src/convert.rs b/src/convert.rs index c42bbc3..ebb4f43 100644 --- a/src/convert.rs +++ b/src/convert.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only //! Convert Gemtext into many types of markup. diff --git a/src/convert/html.rs b/src/convert/html.rs index 4608cd5..bfba6e7 100644 --- a/src/convert/html.rs +++ b/src/convert/html.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use {crate::ast::Node, std::fmt::Write}; diff --git a/src/convert/macros.rs b/src/convert/macros.rs index f887bfe..a3b6724 100644 --- a/src/convert/macros.rs +++ b/src/convert/macros.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only /// Convert Gemtext into HTML diff --git a/src/convert/markdown.rs b/src/convert/markdown.rs index d90790f..27306a7 100644 --- a/src/convert/markdown.rs +++ b/src/convert/markdown.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use {crate::ast::Node, std::fmt::Write}; @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only #![deny( diff --git a/src/meta.rs b/src/meta.rs index 95ff4f1..d50af2d 100644 --- a/src/meta.rs +++ b/src/meta.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use std::{borrow::Cow, collections::HashMap, fmt::Display}; diff --git a/src/quick.rs b/src/quick.rs index 6bc5913..024856e 100644 --- a/src/quick.rs +++ b/src/quick.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only pub enum HeadingLevel { diff --git a/src/request.rs b/src/request.rs index fb161d7..eb2973b 100644 --- a/src/request.rs +++ b/src/request.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2023 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only //! Make Gemini requests and get sane, structured results diff --git a/src/request/blocking.rs b/src/request/blocking.rs index ebf8515..2002ed8 100644 --- a/src/request/blocking.rs +++ b/src/request/blocking.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use { diff --git a/src/request/non_blocking.rs b/src/request/non_blocking.rs index 84835a8..3bbcd95 100644 --- a/src/request/non_blocking.rs +++ b/src/request/non_blocking.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2024 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use { diff --git a/src/request/response.rs b/src/request/response.rs index 7c3b1fd..ef4b515 100644 --- a/src/request/response.rs +++ b/src/request/response.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use { diff --git a/src/request/status.rs b/src/request/status.rs index 557171a..0ec5041 100644 --- a/src/request/status.rs +++ b/src/request/status.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use std::{fmt, fmt::Formatter}; diff --git a/src/request/verifier.rs b/src/request/verifier.rs index 8e5d015..b037353 100644 --- a/src/request/verifier.rs +++ b/src/request/verifier.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use { diff --git a/tests/ast.rs b/tests/ast.rs index 37320a7..397f752 100644 --- a/tests/ast.rs +++ b/tests/ast.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only #[cfg(test)] diff --git a/tests/convert.rs b/tests/convert.rs index 84d605e..12bbcae 100644 --- a/tests/convert.rs +++ b/tests/convert.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only #[cfg(test)] diff --git a/tests/meta.rs b/tests/meta.rs index 7c555de..e92df0e 100644 --- a/tests/meta.rs +++ b/tests/meta.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only #[cfg(test)] diff --git a/tests/quick.rs b/tests/quick.rs index 255acd9..bc61a84 100644 --- a/tests/quick.rs +++ b/tests/quick.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only #[cfg(test)] diff --git a/tests/status.rs b/tests/status.rs index 51f3f66..6a210a0 100644 --- a/tests/status.rs +++ b/tests/status.rs @@ -1,5 +1,5 @@ // This file is part of Germ <https://github.com/gemrest/germ>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2025 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 +13,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-2025 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only #[cfg(test)] |