Skip to content

Commit

Permalink
Merge pull request #14 from bananaturtlesandwich/oodle
Browse files Browse the repository at this point in the history
Split oodle loading into dedicated crate
  • Loading branch information
trumank authored Dec 17, 2023
2 parents d8e82a2 + c84be27 commit 9362db0
Show file tree
Hide file tree
Showing 12 changed files with 576 additions and 291 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ edition = "2021"
[workspace.dependencies]
aes = "0.8.2"
base64 = "0.21.0"
hex = "0.4.3"
strum = { version = "0.24", features = ["derive"] }
sha1 = "0.10"
hex = "0.4"

# generated by 'cargo dist init'
[profile.dist]
Expand Down
23 changes: 23 additions & 0 deletions oodle_loader/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[package]
name = "oodle_loader"
repository.workspace = true
authors.workspace = true
license.workspace = true
version.workspace = true
edition.workspace = true

[target.'cfg(windows)'.dependencies]
libloading = "0.7"

[target.'cfg(unix)'.dependencies]
object = { version = "0.32.1", default-features = false, features = ["std", "read"] }
libc = "0.2.148"
seq-macro = "0.3.5"

[dependencies]
sha1 = { workspace = true }
ureq = "2.6"
hex-literal = "0.4"
hex = { workspace = true }
anyhow = "1.0.75"
lzma-rs = "0.3.0"
Binary file added oodle_loader/section.bin
Binary file not shown.
Loading

0 comments on commit 9362db0

Please sign in to comment.