acme 0.2.2

Acme is a complete development toolkit for extending platform functionality
docs.rs failed to build acme-0.2.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: acme-0.3.1

acme

About

Acme advances the scsys crate by carefully implementing a number of useful networking utilities designed to eventually mimic libraries like Python's FastAPI, enabling developers to quickly spin up cloud-native applications written in Rust.

Contributors

Building from the Source

Clone the repository

git clone https://gitlab.com/FL03/acme

Crate

cargo build --color always --release --workspace
cargo test --all-features --color always --release --verbose --workspace

Developers

Examples

netaddr

fn main() -> scsys::BoxResult {
    println!("{:?}", netaddr![([0, 0, 0, 0), 8080]);
    Ok(())
}