This commit is contained in:
Tyler Hallada 2021-05-20 22:21:27 -04:00
parent af8e66fa66
commit 9c7d850298
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ name = "skyrim-cell-dump"
version = "0.1.0"
edition = "2018"
authors = ["Tyler Hallada <tyler@hallada.net>"]
description = "Library and binary for parsing Skyrim plugin files and extracing CELL data"
description = "Library and binary for parsing Skyrim plugin files and extracting CELL data"
repository = "https://github.com/thallada/skyrim-cell-dump"
readme = "README.md"
license = "MIT"

View File

@ -1,6 +1,6 @@
# skyrim-cell-dump
Library and binary for parsing Skyrim plugin files and extracing CELL data.
Library and binary for parsing Skyrim plugin files and extracting CELL data.
The main objective of this library is to extract the form ID and X and Y coordinates of every exterior cell a plugin edits as fast as possible, ignoring the rest of the plugin.

View File

@ -1,6 +1,6 @@
//! # Skyrim Cell Dump
//!
//! `skyrim-cell-dump` is a library for parsing Skyrim plugin files and extracing CELL data into Rust structs.
//! `skyrim-cell-dump` is a library for parsing Skyrim plugin files and extracting CELL data into Rust structs.
#[macro_use]
extern crate bitflags;