gemrendr 0.3.1

Turns Gemtext into idiomatic HTML
Documentation
//! gemrendr   Turns Gemtext into idiomatic HTML.
//! Copyright (C) 2025  AverageHelper
//!
//! 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
//! the Free Software Foundation, either version 3 of the License, or
//! (at your option) any later version.
//!
//! This program is distributed in the hope that it will be useful,
//! but WITHOUT ANY WARRANTY; without even the implied warranty of
//! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//! GNU General Public License for more details.
//!
//! You should have received a copy of the GNU General Public License
//! along with this program.  If not, see <https://www.gnu.org/licenses/>.

// Because this file is used differently by the binary and lib, there may be some dead_code warnings.
#![allow(dead_code)]

use const_str::{chain, join, split};

pub static PKG_NAME: &str = env!("CARGO_PKG_NAME");

pub static PKG_REPO: &str = env!("CARGO_PKG_REPOSITORY");

pub static COPYRIGHT_YEAR: &str = "2025";

static AUTHORS: &[&str] = &chain! {
	env!("CARGO_PKG_AUTHORS"),
	split!(_, ':'),
};
pub static PKG_AUTHORS: &str = join!(AUTHORS, ", ");