Skip to content

Commit

Permalink
Add CK3 binary save parsing (#2)
Browse files Browse the repository at this point in the history
* Add 1.1.3 tokens

* CK3 binary parsing

* Remove dangling module

* Add handling for save_id header

* Bump version to 0.3.0 and update description
  • Loading branch information
jzebedee authored Oct 22, 2020
1 parent a01e834 commit f292802
Show file tree
Hide file tree
Showing 8 changed files with 11,625 additions and 25 deletions.
160 changes: 158 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
[package]
name = "ck3json"
version = "0.2.0"
version = "0.3.0"
authors = ["J. Zebedee <zebedee@code.gripe>"]
description = "Convert CK3txt-format files to JSON"
description = "Convert CK3 files to JSON"
license = "MIT"
repository = "https://github.com/scorpdx/ck3json"
edition = "2018"

[dependencies]
clap = "^2.33.0"
pest = "^2.1.1"
pest_derive = "^2.1.0"
encoding_rs_io = "^0.1.6"
clap = "2.33.0"
pest = "2.1.1"
pest_derive = "2.1.0"
encoding_rs_io = "0.1.6"
ck3save = "0.1.3"

[profile.release]
opt-level = 3
Expand Down
Loading

0 comments on commit f292802

Please sign in to comment.