ascn-rs 0.3.0

A chess encoding similar to PGN but significantly smaller
Documentation
1
2
3
4
5
6
7
# ascn-rs

Assumed Standard Chess Notation is a format for encoding the entire history of a chess game in as small a space as possible in reasonable time. This algorithm stores each move in about a byte and occasionally overflows to handle edge cases. Made for the AP Computer Science Principles Create Task in 2023.

## Dependencies

This project uses [chess](https://crates.io/crates/ches) and [pgn-rs](https://github.com/BlueZeeKing/pgn-rs)