8 releases

new 0.1.19 Apr 27, 2024
0.1.18 Mar 28, 2024
0.1.14 Feb 19, 2024

#5 in #pk

Download history 1/week @ 2024-01-27 31/week @ 2024-02-10 196/week @ 2024-02-17 28/week @ 2024-02-24 4/week @ 2024-03-02 9/week @ 2024-03-09 482/week @ 2024-03-23 77/week @ 2024-03-30 10/week @ 2024-04-06

569 downloads per month
Used in 2 crates

Apache-2.0

49KB
1K SLoC

Rust 1K SLoC // 0.0% comments Shell 115 SLoC // 0.1% comments

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<()> {
  OK
}

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

Dependencies

~17–35MB
~647K SLoC