repak/oodle_loader/Cargo.toml

24 lines
515 B
TOML
Raw Normal View History

2023-09-20 19:21:15 +00:00
[package]
2023-12-16 22:23:56 +00:00
name = "oodle_loader"
2023-09-20 19:21:15 +00:00
repository.workspace = true
authors.workspace = true
license.workspace = true
version.workspace = true
edition.workspace = true
2023-10-03 05:50:58 +00:00
[target.'cfg(windows)'.dependencies]
2024-05-31 19:02:53 +00:00
libloading = "0.8"
2023-10-03 05:50:58 +00:00
[target.'cfg(unix)'.dependencies]
2024-05-31 19:02:53 +00:00
object = { version = "0.36.0", default-features = false, features = ["std", "read"] }
libc = "0.2.155"
2023-10-03 05:50:58 +00:00
seq-macro = "0.3.5"
2023-09-20 19:21:15 +00:00
[dependencies]
sha1 = { workspace = true }
2024-05-31 19:02:53 +00:00
ureq = "2.9"
2023-09-20 19:21:15 +00:00
hex-literal = "0.4"
2023-10-03 05:50:58 +00:00
hex = { workspace = true }
2024-05-31 19:02:53 +00:00
anyhow = "1.0.86"
2023-10-03 05:50:58 +00:00
lzma-rs = "0.3.0"