A core library and async runtime for Rust applications.
Quick start
In Cargo.toml:
[]
= "0.1"
In src/main.rs:
use af_core::prelude::*;
#[af_core::main]
async fn main() {
info!("Hello world!");
}
A core library and async runtime for Rust applications.
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!");
}