-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathCargo.toml
More file actions
87 lines (80 loc) · 2.51 KB
/
Copy pathCargo.toml
File metadata and controls
87 lines (80 loc) · 2.51 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
[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.95"
repository = "https://github.com/garyttierney/me3"
license = "MIT OR Apache-2.0"
[workspace.metadata.vendor-filter]
platforms = ["x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc", "x86_64-pc-windows-gnu"]
[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"
memchr = "2.8.2"
normpath = "1"
pelite = "0.10"
rayon = "1"
rdvec = "0.2.1"
regex = "1"
rkyv = { version = "0.8.14", features = ["indexmap-2"] }
schemars = "1.2"
sentry = { version = "0.48", default-features = false }
serde = "1"
serde_derive = "1"
serde_json = "1"
steamlocate = { git = "https://github.com/WilliamVenner/steamlocate-rs", rev = "926175b1ffbe06ccdd2449fb74927bd173db25ec" }
strum = "0.28"
strum_macros = "0.28"
tempfile = "3"
thiserror = "2"
toml = { version = "1.1.2", features = ["preserve_order"] }
tracing = { version = "0.1", features = ["release_max_level_debug"] }
tracing-error = "0.2"
tracing-subscriber = { version = "0.3", default-features = false }
ureq = { version = "3", default-features = false, features = ["native-tls"] }
windows = "0.62"
xxhash-rust = { version = "0.8", features = ["std", "xxh3"] }
indexmap = { version = "2.14.0", features = ["serde"] }
[profile.dev.package."*"]
opt-level = 3
[profile.release]
debug = 2
strip = "none"