Packler, bundle Rust for the web

Warning This is not ready yet.

Usage

A basic xtask main file using Packler:

```rust use packler::{PacklerConfig, PacklerParams, Run};

[tokio::main]

async fn main() { dotenv::fromfilename(".env.deploy").ok(); envlogger::Builder::fromenv(envlogger::Env::default().defaultfilteror("info")).init();

let run = Run::new(
    PacklerParams::new(
        ["app.scss", "admin.scss"],
        [""; 0], // No WASM frontend
        Some("server"),
        Some("prod-pikz-assets"),
    ),
    PacklerConfig::default(),
);

run.start().await;

} ```

Book

Run the devserver with $ mdbook serve book/ --open.

Other