///|
/// Semantic version of the PageLens library.
pub let version : String = "0.1.0"

///|
/// Short description used by the CLI and package documentation.
pub let description : String = "Read-only SQLite database and WAL file analyzer"

///|
/// Return the project banner without performing file I/O.
pub fn banner() -> String {
  "PageLens " + version + " - " + description
}