cargo-prosa 0.4.2

ProSA utility to package and deliver a builded ProSA
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/COPYRIGHT"))]
//!
//! [![github]](https://github.com/worldline/ProSA) [![crates-io]](https://crates.io/crates/cargo-prosa) [![docs-rs]](crate) [![mdbook]](https://worldline.github.io/ProSA/)
//!
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/doc_assets/header_badges.md"))]
//!
//! ProSA Cargo to build an entire ProSA
#![warn(missing_docs)]
#![deny(unreachable_pub)]

/// Configuration file name for ProSA. Define all processor list
pub const CONFIGURATION_FILENAME: &str = "ProSA.toml";

pub mod package;

pub mod builder;

pub mod cargo;