| Crates.io | bitsy-file |
| lib.rs | bitsy-file |
| version | 0.712.1 |
| created_at | 2025-12-24 14:47:55.476651+00 |
| updated_at | 2025-12-27 11:00:39.334214+00 |
| description | A parser for Bitsy game files |
| homepage | |
| repository | https://github.com/orsinium-labs/bitsy-file |
| max_upload_size | |
| id | 2003329 |
| size | 186,332 |
Rust crate for parsing bitsy scripts.
Base on bitsy-parser by Max Bradbury.
See also bitsy-script for parsing and interpreting bitsy dialogs and firefly-bitsy for running bitsy games on Firefly Zero.
cargo add bitsy-file
let content: &str = todo!();
let game = bitsy_file::Game::from(content)?;
for warning in &game.warnings {
todo!();
}