-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathCargo.toml
More file actions
126 lines (116 loc) · 3.82 KB
/
Cargo.toml
File metadata and controls
126 lines (116 loc) · 3.82 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
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
[workspace]
members = [
"mint_lib",
"hook",
"hook_resolvers",
]
[workspace.package]
repository = "https://github.com/trumank/mint"
authors = ["trumank", "jieyouxu"]
license = "MIT OR Apache-2.0"
version = "0.2.10"
edition = "2024"
[workspace.dependencies]
anyhow = { version = "1.0.99", features = ["backtrace"] }
patternsleuth = { git = "https://github.com/trumank/patternsleuth" }
steamlocate = "2.0.1"
repak = { git = "https://github.com/trumank/repak" }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.143"
itertools = "0.14.0"
postcard = { version = "1.1.3", default-features = false, features = ["alloc"] }
fs-err = "3.1.1"
tracing = { version = "0.1.41", features = ["attributes"] }
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter", "std", "registry"] }
tokio = "1.47.1"
reqwest = { version = "0.11.27", default-features = false, features = ["blocking", "rustls", "json"] }
snafu = "0.8.7"
[package]
name = "mint"
repository.workspace = true
authors.workspace = true
license.workspace = true
version.workspace = true
edition.workspace = true
[features]
default = ["hook"]
hook = ["dep:hook"]
debug = ["egui/deadlock_detection"]
[dependencies]
ansi_term = "0.12.1"
anyhow.workspace = true
async-trait = "0.1.89"
clap = { version = "4.5.46", features = ["derive"] }
dialoguer = "0.11.0"
directories = "6.0.0"
eframe = "0.31.1"
egui = "0.31.1"
egui_commonmark = "0.20.0"
futures = "0.3.31"
hex = "0.4.3"
image = { version = "0.25.6", default-features = false, features = ["png"] }
indexmap = { version = "2.11.0", features = ["serde"] }
inventory = "0.3.21"
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.7.2"
path-slash = "0.2.1"
rayon = "1.11.0"
regex = "1.11.2"
reqwest.workspace = true
reqwest-middleware = "0.2.5"
rfd = "0.15.4"
rust-ini = "0.21.1"
self_update = { version = "0.42.0", default-features = false, features = ["archive-zip", "rustls"] }
semver = "1.0.26"
serde.workspace = true
serde_json.workspace = true
sha2 = "0.10.9"
steamlocate.workspace = true
task-local-extensions = "0.1.4"
tempfile = "3.21.0"
thiserror = "2.0.16"
tokio = { workspace = true, features = ["full"] }
tracing.workspace = true
typetag = "0.2.20"
uasset_utils = { git = "https://github.com/trumank/uasset_utils" }
unreal_asset = { git = "https://github.com/trumank/unrealmodding", branch = "patches" }
url = "2.5.7"
zip = { version = "2.6.1", default-features = false, features = ["aes-crypto", "deflate", "time"] }
repak.workspace = true
include_dir = "0.7.4"
postcard.workspace = true
fs-err.workspace = true
snafu.workspace = true
strum = { version = "0.27", features = ["derive"] }
itertools.workspace = true
egui_dnd = "0.12.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.13.1"