forked from trumank/mint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
130 lines (120 loc) · 4.07 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[workspace]
members = [
"mint_lib",
"hook",
"hook_resolvers",
"workspace_hack",
]
[workspace.package]
repository = "https://github.com/trumank/mint"
authors = ["trumank", "jieyouxu"]
license = "MIT OR Apache-2.0"
version = "0.2.10"
edition = "2021"
[workspace.dependencies]
anyhow = { version = "1.0.79", features = ["backtrace"] }
patternsleuth = { git = "https://github.com/trumank/patternsleuth" }
steamlocate = "2.0.0-beta.2"
repak = { git = "https://github.com/trumank/repak" }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
itertools = "0.12.0"
postcard = { version = "1.0.8", default-features = false, features = ["alloc"] }
fs-err = "2.11.0"
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.18", features = ["fmt", "env-filter", "std", "registry"] }
tokio = "1.35.1"
reqwest = { version = "0.11.23", default-features = false, features = ["blocking", "rustls", "json"] }
snafu = "0.8.0"
[package]
name = "mint"
repository.workspace = true
authors.workspace = true
license.workspace = true
version.workspace = true
edition.workspace = true
[features]
default = ["hook", "oodle_platform_dependent"]
hook = ["dep:hook"]
oodle = ["repak/oodle_implicit_dynamic"]
oodle_platform_dependent = ["workspace_hack/oodle_platform_dependent"]
debug = ["egui/deadlock_detection", "egui/extra_debug_asserts", "egui/extra_asserts"]
[dependencies]
workspace_hack = { path = "workspace_hack" }
ansi_term = "0.12.1"
anyhow.workspace = true
async-trait = "0.1.77"
clap = { version = "4.4.14", features = ["derive"] }
dialoguer = "0.11.0"
directories = "5.0.1"
eframe = "0.25.0"
egui = "0.25.0"
egui_commonmark = "0.11.0"
futures = "0.3.30"
hex = "0.4.3"
image = { version = "0.24.7", default-features = false, features = ["png"] }
indexmap = { version = "2.1.0", features = ["serde"] }
inventory = "0.3.14"
mint_lib = { path = "mint_lib" }
modio = { git = "https://github.com/trumank/modio-rs.git", branch = "dev", default-features = false, features = ["rustls-tls"] }
obake = { version = "1.0.5", features = ["serde"] }
opener = "0.6.1"
path-slash = "0.2.1"
rayon = "1.8.0"
regex = "1.10.2"
reqwest.workspace = true
reqwest-middleware = "0.2.4"
rfd = "0.12.1"
rust-ini = "0.20.0"
self_update = { version = "0.39.0", default-features = false, features = ["archive-zip", "rustls"] }
semver = "1.0.21"
serde.workspace = true
serde_json.workspace = true
sha2 = "0.10.8"
steamlocate.workspace = true
task-local-extensions = "0.1.4"
tempfile = "3.9.0"
thiserror = "1.0.56"
tokio = { workspace = true, features = ["full"] }
tracing.workspace = true
typetag = "0.2.16"
uasset_utils = { git = "https://github.com/trumank/uasset_utils" }
unreal_asset = { git = "https://github.com/trumank/unrealmodding", branch = "patches" }
url = "2.5.0"
zip = { version = "0.6.6", default-features = false, features = ["aes-crypto", "deflate", "time"] }
repak.workspace = true
include_dir = "0.7.3"
postcard.workspace = true
fs-err.workspace = true
snafu.workspace = true
strum = { version = "0.26", features = ["derive"] }
itertools.workspace = true
egui_dnd = "0.6.0"
[target.'cfg(target_env = "msvc")'.dependencies]
hook = { path = "hook", artifact = "cdylib", optional = true, target = "x86_64-pc-windows-msvc"}
[target.'cfg(not(target_env = "msvc"))'.dependencies]
hook = { path = "hook", artifact = "cdylib", optional = true, target = "x86_64-pc-windows-gnu"}
# generated by 'cargo dist init'
[profile.dist]
inherits = "release"
debug = false
strip = true
[profile.dev]
opt-level = 3
lto = "off"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.0.7"
# The preferred Rust toolchain to use in CI (rustup toolchain syntax)
rust-toolchain-version = "1.70.0"
# CI backends to support (see 'cargo dist generate-ci')
ci = ["github"]
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
unix-archive = ".zip"
[dev-dependencies]
mockall = "0.12.1"