Skip to content

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed Mar 23, 2019
1 parent 4618bc3 commit 1f89d76
Show file tree
Hide file tree
Showing 8 changed files with 713 additions and 11 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# genie-rs change log

All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/).

## 0.1.0
* Initial release.
17 changes: 14 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,24 @@ name = "genie"
version = "0.1.0"
authors = ["Renée Kooi <[email protected]>"]
edition = "2018"
license = "GPL-3.0"
description = "Libraries for reading/writing Age of Empires II data files"
homepage = "https://github.com/SiegeEngineers/genie-rs"
repository = "https://github.com/SiegeEngineers/genie-rs"

[dependencies]
chariot_palette = "^0.1.5"
genie-cpx = { path = "crates/genie-cpx" }
genie-hki = { path = "crates/genie-hki" }
genie-scx = { path = "crates/genie-scx" }
genie-cpx = { version = "0.1.0", path = "crates/genie-cpx" }
genie-hki = { version = "0.1.0", path = "crates/genie-hki" }
genie-scx = { version = "1.0.0", path = "crates/genie-scx" }

[dev-dependencies]
quicli = "^0.4.0"
structopt = "^0.2.0"

[workspace]
members = [
"crates/genie-cpx",
"crates/genie-hki",
"crates/genie-scx"
]
675 changes: 675 additions & 0 deletions LICENSE.md

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion crates/genie-cpx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ name = "genie-cpx"
version = "0.1.0"
authors = ["Renée Kooi <[email protected]>"]
edition = "2018"
license = "GPL-3.0"
description = "Read Age of Empires I/II campaign files."
homepage = "https://github.com/SiegeEngineers/genie-rs"
repository = "https://github.com/SiegeEngineers/genie-rs"

[dependencies]
byteorder = "^1.3.1"
genie-scx = { path = "../genie-scx" }
genie-scx = { version = "1.0.0", path = "../genie-scx" }
4 changes: 1 addition & 3 deletions crates/genie-cpx/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# genie-cpx

Read/write Age of Empires 2 campaign files.

> This crate copies lots of bytes when it probably doesn't need to, but I'm not sure how to get the ownership right to reduce it. I'd appreciate PRs!
Read Age of Empires 2 campaign files.

## Usage

Expand Down
4 changes: 4 additions & 0 deletions crates/genie-hki/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name = "genie-hki"
version = "0.1.0"
authors = ["Renée Kooi <[email protected]>"]
edition = "2018"
license = "GPL-3.0"
description = "Read Age of Empires I/II hotkey files."
homepage = "https://github.com/SiegeEngineers/genie-rs"
repository = "https://github.com/SiegeEngineers/genie-rs"

[dependencies]
byteorder = "^1.3.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/genie-hki/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# genie-hki

Read/write Age of Empires 2 hotkey files.
Read Age of Empires 2 hotkey files.

## Usage

Expand Down
8 changes: 5 additions & 3 deletions crates/genie-scx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[package]
name = "genie-scx"
version = "0.1.0"
version = "1.0.0"
authors = ["Renée Kooi <[email protected]>"]
edition = "2018"
license = "GPL-3.0"
description = "Read and write Age of Empires I/II scenario files."
homepage = "https://github.com/SiegeEngineers/genie-rs"
repository = "https://github.com/SiegeEngineers/genie-rs"

[dependencies]
byteorder = "^1.3.1"
encoding_rs = "^0.8.17"
flate2 = { version = "^1.0.0", features = ["rust_backend"], default-features = false }
num-derive = "^0.2.0"
num-traits = "^0.2.0"
quicli = "^0.4.0"
structopt = "^0.2.0"

0 comments on commit 1f89d76

Please sign in to comment.