| Crates.io | sar-core |
| lib.rs | sar-core |
| version | 0.1.1 |
| created_at | 2025-04-27 09:07:17.115974+00 |
| updated_at | 2025-04-28 09:33:07.079972+00 |
| description | A Rust library for parsing and rendering SymbolArt (SAR) files from Phantasy Star Online 2. |
| homepage | https://github.com/shusann01116/sar-rs |
| repository | https://github.com/shusann01116/sar-rs |
| max_upload_size | |
| id | 1650955 |
| size | 550,035 |
Core library for parsing and processing PSO2 SymbolArt (SAR) files.
Add this to your Cargo.toml:
[dependencies]
sar-core = "0.1.0"
Example usage:
use sar_core::SarParser;
// Parse a SAR file
let parser = SarParser::new();
let result = parser.parse_file("path/to/file.sar")?;
// Process the parsed data
for symbol in result.symbols {
println!("Symbol: {:?}", symbol);
}
This project is licensed under the MIT License - see the LICENSE file for details.