arfur-rev 0.0.1

Bindings to the REV framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "bindgen")]
#[tokio::main]
async fn main() -> color_eyre::Result<()> {
    arfur_build::runners::rev::run(false).await
}

#[cfg(not(feature = "bindgen"))]
#[tokio::main]
async fn main() -> color_eyre::Result<()> {
    arfur_build::runners::rev::run(true).await
}