8 releases

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

#5 in #pk

Download history 33/week @ 2024-02-11 200/week @ 2024-02-18 23/week @ 2024-02-25 3/week @ 2024-03-03 9/week @ 2024-03-10 500/week @ 2024-03-24 64/week @ 2024-03-31 5/week @ 2024-04-07 145/week @ 2024-04-21 58/week @ 2024-04-28 1/week @ 2024-05-05 19/week @ 2024-05-19

213 downloads per month
Used in 3 crates (via i18n_bgu)

Apache-2.0

52KB
1K SLoC

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

~16–34MB
~631K SLoC