-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (58 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
63 lines (58 loc) · 1.4 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
cargo-features = ["profile-rustflags"]
[workspace]
resolver = "2"
members = [
"crates/detours",
"emtk_asset",
"emtk_core",
"emtk_framework",
"emtk_framework_types",
"emtk_launcher",
]
default-members = ["emtk_launcher"]
[workspace.package]
version = "0.1.0-dev"
authors = ["Megumin <megumin@megu.dev>", "ProffDea <deatea@riseup.net>"]
edition = "2024"
documentation = "https://exanimamodding.codeberg.page/Book"
homepage = "https://exanimamodding.codeberg.page/Book"
repository = "https://codeberg.org/ExanimaModding/Toolkit"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
anyhow = "1.0"
detours-sys = { path = "./crates/detours" }
emtk_framework_types = { path = "./emtk_framework_types" }
image = { version = "0.25", default-features = false, features = [
"ico",
"png",
] }
open = "5.3"
ron = "0.8"
safer-ffi = { version = "0.1", default-features = false, features = [
"alloc",
"log",
] }
serde = { version = "1.0", features = ["derive"] }
tempfile = "3.16"
thiserror = "2.0"
tokio = { version = "1", features = [
"io-std",
"fs",
"io-util",
"macros",
"rt-multi-thread",
] }
toml = "0.8"
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-tracy = "0.11.4"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
rustflags = ["-Zlocation-detail=none"]
[profile.release.package.emtk_framework]
opt-level = 3