rustadex 0.1.0

Placeholder for the Rustadex framework. The unified facade for the rdx-* ecosystem of crates. Currently under active development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// In rustadex/src/lib.rs

//! # Rustadex
//!
//! This is a placeholder crate for the upcoming **Rustadex** Codex.
//!
//! The goal of this project is to provide a unified, ergonomic facade for a
//! suite of powerful Rust libraries.
//!
//! This crate is currently under active development and is not yet functional.

/// A placeholder function that will be part of the future API.
pub fn hello() {
    println!("Welcome to the future home of the Rustadex Codex!");
}