-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (46 loc) · 1.72 KB
/
Cargo.toml
File metadata and controls
52 lines (46 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "unity-scene-repacker"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description.workspace = true
[dependencies]
anyhow = "1.0"
byteorder = "1.5"
elsa = "1.11"
indexmap = { version = "2.9", features = ["serde", "rayon"] }
log = "0.4"
lz4_flex = { version = "0.11", default-features = false }
memmap2 = "0.9"
rabex.workspace = true
rabex-env.workspace = true
typetree-generator-api.workspace = true
rayon = "1.10"
rustc-hash = "2.1"
serde = { version = "1.0", default-features = false }
serde_derive = "1.0"
serde_json = { version = "1.0", features = ["preserve_order"] }
[workspace]
members = [".", "bindings", "cli"]
default-members = [".", "bindings", "cli"]
package.version = "2.4.0"
package.edition = "2024"
package.license = "MIT"
package.repository = "https://github.com/jakobhellermann/unity-scene-repacker"
package.description = "Repack unity level files into filtered asset bundles you can load at runtime"
[lints.clippy]
redundant_pattern_matching = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
[workspace.dependencies]
typetree-generator-api = { git = "https://github.com/jakobhellermann/typetree-generator-api-bindings" }
rabex = { git = "https://github.com/jakobhellermann/RustyAssetBundleEXtractor", default-features = false, features = [
"embed-tpk",
# "serde_path_to_error", nicer errors for debugging, at a 2x speed cost
] }
rabex-env = { git = "https://github.com/jakobhellermann/rabex-env" }
# [patch."https://github.com/jakobhellermann/RustyAssetBundleEXtractor"]
# rabex = { path = "/home/jakob/dev/unity/RustyAssetBundleEXtractor" }
# [patch."https://github.com/jakobhellermann/rabex-env"]
# rabex-env = { path = "../rabex-env" }