Files
advotracker/src/lib.rs
Ralf Zerres 5a9965751a advotracker: reorganize the project using a crate based structure
* advotracker: the framework project
* crate/advotrackerdb: implementation of the database backend
* crate/advotrackerd: implementation of the backend (daemon)
* crate/adovtracker: implementaton of the application (CLI and GUI)

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
2021-03-08 04:32:11 +01:00

49 lines
1.6 KiB
Rust

#![crate_name = "advotracker"]
#![crate_type = "lib"]
//! # advotracker-framework
//!
//! ![advotracker.jpg](../images/advotracker.jpg)
//!
//! `AdvoTracker` is a framework implemented in the `Rust` language
//! (![Rust.svg](../images/rust-logo-blk.svg)).
//! It assembles a client/server infrastructure needed to build a scalable, robust
//! tool used to keep track of legal mandate data within an online advice.
//!
//! ## Overview
//!
//! The framework will offer the following components:
//!
//! * Server side
//!
//! `advotrackerd` implements the server component. For example, it will handle all
//! the interaction with an underling database engine.
//!
//! * Client side
//!
//! `advotracker` is the client counterpart that represents the frontend.
//! To offer a operating system agnostic graphical interface, it will take advantage
//! of `OrbTk`, a Rust naitive GUI framework (![OrbTk.svg](../images/orbtk-logo.svg)).
//!
//! This component is the entry point for all `AdvoTracker` users.
//! All offered tasks are organized in roles. Thus, a user needs to authenticate agains
//! the system to make use of and access its assigned roles.
//!
//! The followin list is an
//! - enter and capture legal mandate date wile working in an online advice
//! - search inside the legal advices database
//! - export legal advices
//! - follow the history of legal advices
//! - get statistics about completed advices
//!
//! ## Workflow visualization
//!
//! The following image try to illustrate the major components and its workflow.
//!
//!
// eperimental features
//#![feature(extern_doc)]
//#[doc(include="../README.md")]