rdfoothills_base/
lib.rs

1// SPDX-FileCopyrightText: 2024 Robin Vobruba <hoijui.quaero@gmail.com>
2//
3// SPDX-License-Identifier: AGPL-3.0-or-later
4
5pub mod hasher;
6pub mod util;
7
8use git_version::git_version;
9
10// This tests rust code in the README with doc-tests.
11// Though, It will not appear in the generated documentation.
12#[doc = include_str!("../README.md")]
13#[cfg(doctest)]
14pub struct ReadmeDoctests;
15
16pub const VERSION: &str = git_version!(cargo_prefix = "", fallback = "unknown");