Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

gleam / compiler-core / src / metadata.rs
261 B 10 lines
1//! Seriaisation and deserialisation of Gleam compiler metadata into binary files 2//! using the Cap'n Proto schema. 3 4mod module_decoder; 5mod module_encoder; 6 7#[cfg(test)] 8mod tests; 9 10pub use self::{module_decoder::ModuleDecoder, module_encoder::ModuleEncoder};