aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ast.rs4
-rw-r--r--src/ast/container.rs4
-rw-r--r--src/ast/macros.rs4
-rw-r--r--src/ast/node.rs4
-rw-r--r--src/convert.rs4
-rw-r--r--src/convert/html.rs4
-rw-r--r--src/convert/macros.rs4
-rw-r--r--src/convert/markdown.rs4
-rw-r--r--src/lib.rs4
-rw-r--r--src/meta.rs4
-rw-r--r--src/quick.rs4
-rw-r--r--src/request.rs4
-rw-r--r--src/request/blocking.rs4
-rw-r--r--src/request/non_blocking.rs4
-rw-r--r--src/request/response.rs4
-rw-r--r--src/request/status.rs4
-rw-r--r--src/request/verifier.rs4
17 files changed, 34 insertions, 34 deletions
diff --git a/src/ast.rs b/src/ast.rs
index cec8c89..52c25de 100644
--- a/src/ast.rs
+++ b/src/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
//! 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};
diff --git a/src/lib.rs b/src/lib.rs
index aa193f1..c4893b3 100644
--- a/src/lib.rs
+++ b/src/lib.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
#![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 {