projvar/
lib.rs

1// SPDX-FileCopyrightText: 2021 - 2023 Robin Vobruba <hoijui.quaero@gmail.com>
2//
3// SPDX-License-Identifier: AGPL-3.0-or-later
4
5mod cleanup;
6mod constants;
7pub mod environment;
8mod license;
9pub mod process;
10pub mod settings;
11pub mod sinks;
12pub mod sources;
13mod std_error;
14mod storage;
15pub mod tools;
16pub mod validator;
17pub mod value_conversions;
18pub mod var;
19
20use git_version::git_version;
21
22// This tests rust code in the README with doc-tests.
23// Though, It will not appear in the generated documentaton.
24#[doc = include_str!("../README.md")]
25#[cfg(doctest)]
26pub struct ReadmeDoctests;
27
28pub const VERSION: &str = git_version!(cargo_prefix = "", fallback = "unknown");