rs_sb3/lib.rs
1//! Rust crate with Serde implementation for json part in .sb3 format. (the Scratch 3 project format)
2
3pub mod asset;
4pub mod monitor;
5pub mod project;
6pub mod string_hashmap;
7pub mod target;
8pub mod value;
9
10pub mod block;
11pub mod broadcast;
12pub mod comment;
13pub mod list;
14pub mod variable;
15
16pub(crate) mod prelude;
17#[cfg(test)]
18mod test_serde;
19mod utils;