sightglass-api 0.1.0

Provides Rust bindings to the sightglass-next API.
Documentation

This crate provides simple bindings for Rust to the Sightglass API. The primary intent is to make it easy to instrument Rust code that will be compiled to Wasm and measured with Sightglass.

For example:

use sightglass_api as bench;
bench::start();
let work = 42 * 42;
bench::end();

See [benchmarks-next/README.md] for more details.