-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4618bc3
commit 1f89d76
Showing
8 changed files
with
713 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
] |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |