-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (75 loc) · 2.18 KB
/
Cargo.toml
File metadata and controls
81 lines (75 loc) · 2.18 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
[workspace]
members = [
"crates/cli",
"crates/env",
"crates/ipc",
"crates/launcher",
"crates/launcher-attach-protocol",
"crates/mod-host",
"crates/mod-protocol",
"crates/mod-host-assets",
"crates/mod-host-types",
"crates/telemetry",
"crates/xtask",
"crates/binary-analysis",
]
resolver = "2"
[workspace.package]
version = "0.6.0-prerelease"
edition = "2024"
rust-version = "1.89"
repository = "https://github.com/garyttierney/me3"
license = "MIT OR Apache-2.0"
[workspace.lints.rust]
unused = "warn"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] }
[workspace.lints.clippy]
collapsible_if = "allow"
missing_transmute_annotations = "allow"
[workspace.dependencies]
chrono = "0.4"
clap = "4"
color-eyre = { version = "0.6", default-features = false }
ctrlc = "3"
directories = "6"
expect-test = "1"
eyre = { version = "0.6", default-features = false }
from-singleton = "3"
is-terminal = "0.4"
me3-binary-analysis = { path = "crates/binary-analysis" }
me3-env = { path = "crates/env" }
me3-ipc = { path = "crates/ipc" }
me3-launcher-attach-protocol = { path = "crates/launcher-attach-protocol" }
me3-mod-host = { path = "crates/mod-host" }
me3-mod-host-assets = { path = "crates/mod-host-assets" }
me3-mod-host-types = { path = "crates/mod-host-types" }
me3-mod-protocol = { path = "crates/mod-protocol" }
me3-telemetry = { package = "me3_telemetry", path = "crates/telemetry" }
memmap = "0.7"
normpath = "1"
pelite = "0.10"
rayon = "1"
rdvec = "0.2.1"
regex = "1"
rkyv = "0.8.14"
schemars = "1.2"
sentry = { version = "0.46", default-features = false }
serde = "1"
serde_derive = "1"
serde_json = "1"
steamlocate = { git = "https://github.com/WilliamVenner/steamlocate-rs", rev = "926175b1ffbe06ccdd2449fb74927bd173db25ec" }
strum = "0.27"
strum_macros = "0.27"
tempfile = "3"
thiserror = "2"
toml = { version = "0.9.11", features = ["preserve_order"] }
tracing = { version = "0.1", features = ["release_max_level_info"] }
tracing-error = "0.2"
tracing-subscriber = { version = "0.3", default-features = false }
ureq = { version = "3", default-features = false, features = ["native-tls"] }
windows = "0.62"
[profile.dev.package."*"]
opt-level = 3
[profile.release]
debug = 2
strip = "none"