-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
34 lines (29 loc) · 904 Bytes
/
Cargo.toml
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
[package]
name = "unreal_mod_integrator"
version.workspace = true
authors.workspace = true
description.workspace = true
license.workspace = true
repository.workspace = true
homepage = "https://github.com/AstroTechies/unrealmodding/tree/main/unreal_mod_integrator"
documentation = "https://docs.rs/unreal_mod_integrator"
edition = "2021"
[features]
no_bulk_data = []
# UE versions
# If you want support for other ue versions, you can make a pull request with the support added,
# or make an issue asking for a specific ue version to be supported.
ue4_23 = []
[dependencies]
unreal_asset.workspace = true
unreal_helpers.workspace = true
unreal_mod_metadata.workspace = true
unreal_pak.workspace = true
lazy_static.workspace = true
log.workspace = true
regex.workspace = true
serde.workspace = true
serde_json.workspace = true
[build-dependencies]
zip-extract = "0.1.2"
github_helpers.workspace = true