cargo_prosa/
lib.rs

1#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/COPYRIGHT"))]
2//!
3//! [![github]](https://github.com/worldline/ProSA) [![crates-io]](https://crates.io/crates/cargo-prosa) [![docs-rs]](crate) [![mdbook]](https://worldline.github.io/ProSA/)
4//!
5#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/doc_assets/header_badges.md"))]
6//!
7//! ProSA Cargo to build an entire ProSA
8#![warn(missing_docs)]
9#![deny(unreachable_pub)]
10
11/// Configuration file name for ProSA. Define all processor list
12pub const CONFIGURATION_FILENAME: &str = "ProSA.toml";
13
14pub mod package;
15
16pub mod builder;
17
18pub mod cargo;