mirror of
https://github.com/xavo95/repak.git
synced 2025-03-12 22:57:02 +00:00
30 lines
823 B
TOML
30 lines
823 B
TOML
[package]
|
|
name = "repak"
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[features]
|
|
default = ["compression"]
|
|
compression = ["dep:flate2", "dep:zstd"]
|
|
oodle = ["dep:libloading", "dep:ureq", "dep:once_cell", "dep:hex-literal", "dep:hex"]
|
|
|
|
[dependencies]
|
|
byteorder = "1.4"
|
|
aes = "0.8"
|
|
flate2 = { version = "1.0", optional = true }
|
|
zstd = { version = "0.12", optional = true }
|
|
thiserror = "1.0"
|
|
sha1 = "0.10.5"
|
|
strum = { workspace = true }
|
|
libloading = { version = "0.7", optional = true }
|
|
ureq = { version = "2.6", optional = true }
|
|
once_cell = { version = "1.17", optional = true}
|
|
hex-literal = { version = "0.4", optional = true }
|
|
hex = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
base64 = { workspace = true }
|
|
paste = "1.0.11"
|