ssr_rs 0.8.3

Server side rendering with the v8 engine for parse and evaluate the javascript code
Documentation
1
2
3
4
5
6
7
8
9
// This setup is cloned from
// https://github.com/denoland/deno_core_icudata/tree/main
#[repr(C, align(16))]
struct IcuData<T: ?Sized>(T);

static ICU_DATA_RAW: &IcuData<[u8]> = &IcuData(*include_bytes!("icudtl.dat"));

/// Raw ICU data.
pub static ICU_DATA: &[u8] = &ICU_DATA_RAW.0;