docs.rs failed to build bgu-0.1.17
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: bgu-0.1.30

bgu

mod mirror;
use aok::{Result, OK};
use bgu::{boot, PUBLIC_KEY_LENGTH};
use static_init::constructor;

pub const PK: &[u8; PUBLIC_KEY_LENGTH] = include_bytes!("i18n.pk");

#[constructor(0)]
extern "C" fn init() {
  loginit::init()
}

async fn main() -> Result<()> {
  dbg!("test main");
  OK
}

#[tokio::test]
async fn test() -> Result<()> {
  boot(PK, mirror::MIRROR, "i18", main).await?;
  OK
}