sar-core

Crates.iosar-core
lib.rssar-core
version0.1.1
created_at2025-04-27 09:07:17.115974+00
updated_at2025-04-28 09:33:07.079972+00
descriptionA Rust library for parsing and rendering SymbolArt (SAR) files from Phantasy Star Online 2.
homepagehttps://github.com/shusann01116/sar-rs
repositoryhttps://github.com/shusann01116/sar-rs
max_upload_size
id1650955
size550,035
(shusann01116)

documentation

README

sar-core

Core library for parsing and processing PSO2 SymbolArt (SAR) files.

Features

  • Parse SAR files and extract their contents
  • Process and manipulate SymbolArt data
  • Support for various SAR file formats
  • Error handling with detailed error messages

Usage

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);
}

License

This project is licensed under the MIT License - see the LICENSE file for details.

Commit count: 56

cargo fmt