nanoforge 0.1.0

A tool for pulling docker images, unpacking them, and compiling them into a Rust project
Documentation
1
2
3
4
5
6
7
8
9
//! # NanoForge
//! This is the Rust interface for the NanoForge project. NanoForge is a tool for packaging
//! nanoservices into Docker images, and then configuring a Rust project to use these nanoservices
//! as dependencies. The end result is that multiple servers and even JavaScript apps can be
//! compiled into one Rust binary.
#[allow(dead_code)]
pub mod docker_files;
#[allow(dead_code)]
pub mod toml_operations;