libmake 0.2.6

A code generator to reduce repetitive tasks and build high-quality Rust libraries and applications, by providing a simple interface to create projects, generate code, and manage dependencies.
Documentation
// Copyright notice and licensing information.
// These lines indicate the copyright of the software and its licensing terms.
// SPDX-License-Identifier: Apache-2.0 OR MIT indicates dual licensing under Apache 2.0 or MIT licenses.
// Copyright © 2023-2024 LibMake. All rights reserved.

/// The `ascii` module contains functionality for generating ASCII art from
/// text using the FIGlet library.
pub mod ascii;

/// The `args` module contains functionality for parsing command-line arguments.
pub mod args;

/// The `csv` module contains functionality for parsing CSV files.
pub mod csv;

/// The `ini` module contains functionality for parsing INI files.
pub mod ini;

/// The `json` module contains functionality for parsing JSON files.
pub mod json;

/// The `toml` module contains functionality for parsing TOML files.
pub mod toml;

/// The `yaml` module contains functionality for parsing YAML files.
pub mod yaml;