af-core 0.1.8

A core library and async runtime for Rust applications.
Documentation

A core library and async runtime for Rust applications.

Quick start

In Cargo.toml:

[dependencies]
af-core = "0.1"

In src/main.rs:

use af_core::prelude::*;

#[af_core::main]
async fn main() {
  info!("Hello world!");
}