-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
89 lines (77 loc) · 2.46 KB
/
Copy pathCargo.toml
File metadata and controls
89 lines (77 loc) · 2.46 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
[package]
name = "nbtworkbench"
version = "1.6.3"
edition = "2024"
description = "A modern NBT Editor written in Rust designed for performance and efficiency."
license-file = "LICENSE"
repository = "https://github.com/RealRTTV/nbtworkbench"
keywords = ["nbt", "window", "unsafe", "editor", "tree"]
categories = ["graphics", "rendering", "text-editors", "parser-implementations"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# Wasm Only
#[lib]
#crate-type = ["cdylib", "rlib"]
#path = "src/main.rs"
# Windows Only
[package.metadata.winres]
[profile.release]
opt-level = 3
codegen-units = 1
strip = true
debug = false
lto = "fat"
panic = "abort"
[profile.release.build-override]
opt-level = 3
strip = true
debug = false
debug-assertions = false
overflow-checks = false
codegen-units = 1
[profile.flame]
inherits = "release"
strip = false
debug = true
[profile.flame.build-override]
inherits = "release"
strip = false
debug = true
[build-dependencies]
flate2 = "1.0.27"
winres = "0.1.12"
[dependencies]
zune-inflate = { version = "0.2.54", features = ["gzip", "zlib"] }
flate2 = "1.1.1"
winit = "0.30.10"
wgpu = { version = "25.0.0", default-features = false, features = ["webgl", "wgsl", "dx12", "metal", "vulkan"] }
fxhash = "0.2.1"
hashbrown = { version = "0.17.1", features = ["inline-more", "nightly"], default-features = false }
notify = "8.0.0"
uuid = { version = "1.16.0", features = ["v4"] }
compact_str = "0.9.0"
wgsl-inline = { version = "0.2.1", features = ["minify"] }
static_assertions = "1.1.0"
anyhow = "1.0.98"
lz4-java-wrc = "0.2.0"
regex = "1.11.1"
glob = "0.3.2"
zune-png = { version = "0.4.10", features = [] }
parking_lot = "0.12.3"
lazy_static = "1.5.0"
itertools = "0.14.0"
toml = "0.8.22"
serde = { version = "1.0.219", features = ["serde_derive"] }
thiserror = "2.0.12"
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3.9", features = ["wincon"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
cli-clipboard = "0.4.0"
pollster = "0.4.0"
native-dialog = "0.9.0"
dirs = "6.0.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2.99"
wasm-bindgen-futures = "0.4.49"
web-sys = { version = "0.3.72", features = ["console", "Document", "Window", "Element", "Clipboard", "DateTimeValue", "HtmlElement", "HtmlDocument", "HtmlTextAreaElement", "Blob", "HtmlAreaElement", "Url", "Storage"] }
getrandom = { version = "=0.2.15", features = ["js"] }
console_error_panic_hook = "0.1.7"