tc_save_monger

Crates.iotc_save_monger
lib.rstc_save_monger
version0.4.5
sourcesrc
created_at2022-08-20 22:05:06.66529
updated_at2022-08-30 23:41:58.420704
descriptiona reimplementation in Rust of the save_monger library for the game Turing Complete
homepage
repository
max_upload_size
id649496
size19,544
(danielrab)

documentation

README

the main exposed function of the crate is parse(bytes: &[u8]) -> Circuit

example of usage:

use tc_save_monger::{parse, Circuit};
use std::fs;

fn parse_from_file(path: &str) -> Circuit {
    let bytes = fs::read(path).expect("error reading file");
    parse(&bytes)
}
Commit count: 0

cargo fmt