start core info module; move version to info

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-07-24 01:06:58 +00:00
parent ee864bcd9e
commit d7d874f88d
3 changed files with 13 additions and 8 deletions

4
src/core/info/mod.rs Normal file
View file

@ -0,0 +1,4 @@
//! Information about the project. This module contains version, build, system,
//! etc information which can be queried by admins or used by developers.
pub mod version;

View file

@ -1,9 +1,10 @@
/// one true function for returning the conduwuit version with the necessary //! one true function for returning the conduwuit version with the necessary
/// CONDUWUIT_VERSION_EXTRA env variables used if specified //! CONDUWUIT_VERSION_EXTRA env variables used if specified
/// //!
/// Set the environment variable `CONDUWUIT_VERSION_EXTRA` to any UTF-8 string //! Set the environment variable `CONDUWUIT_VERSION_EXTRA` to any UTF-8 string
/// to include it in parenthesis after the SemVer version. A common value are //! to include it in parenthesis after the SemVer version. A common value are
/// git commit hashes. //! git commit hashes.
use std::sync::OnceLock; use std::sync::OnceLock;
static BRANDING: &str = "Conduwuit"; static BRANDING: &str = "Conduwuit";

View file

@ -2,19 +2,19 @@ pub mod alloc;
pub mod config; pub mod config;
pub mod debug; pub mod debug;
pub mod error; pub mod error;
pub mod info;
pub mod log; pub mod log;
pub mod metrics; pub mod metrics;
pub mod mods; pub mod mods;
pub mod pdu; pub mod pdu;
pub mod server; pub mod server;
pub mod utils; pub mod utils;
pub mod version;
pub use config::Config; pub use config::Config;
pub use error::Error; pub use error::Error;
pub use info::{version, version::version};
pub use pdu::{PduBuilder, PduCount, PduEvent}; pub use pdu::{PduBuilder, PduCount, PduEvent};
pub use server::Server; pub use server::Server;
pub use version::version;
pub type Result<T, E = Error> = std::result::Result<T, E>; pub type Result<T, E = Error> = std::result::Result<T, E>;