-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
80 lines (76 loc) · 2.29 KB
/
Cargo.toml
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
[workspace]
members = [
"crates/derive",
"crates/hlbc",
"crates/decompiler",
"crates/cli",
"crates/gui",
"crates/indexing"
]
resolver = "2"
[workspace.package]
authors = ["Guillaume Anthouard <25181283+Gui-Yom@users.noreply.github.com>"]
edition = "2021"
repository = "https://github.com/Gui-Yom/hlbc"
license = "MIT"
[workspace.dependencies]
# Result type
anyhow = "1"
# Disable colors when not a tty (piped output)
atty = "0.2"
# Endianess utilities
byteorder = "1"
# Parser for commands
chumsky = { version = "0.9" }
# CLI args
clap = { version = "4", features = ["derive"] }
console_error_panic_hook = "0.1"
# AIO GUI framework
eframe = { version = "0.28", default-features = false }
# Docking tabs
egui_dock = { version = "0.13" }
# UI theme
egui_ui_refresh = { version = "0.2", path = "../egui_ui_refresh" }
# Cheaply clonable immutable string with inline storage
flexstr = { version = "0.9" }
fuzzy-matcher = "0.3"
# Advanced formatting functionalities
fmtools = "0.1"
hlbc = { version = "0.8", path = "crates/hlbc" }
# Decompiler
hlbc-decompiler = { version = "0.8", path = "crates/decompiler" }
# Compile time code generation for hlbc::Opcode
hlbc-derive = { version = "0.8", path = "crates/derive" }
# Search functionality
hlbc-indexing = { version = "0.8", path = "crates/indexing" }
image = { version = "0.24", default-features = false, features = ["ico"] }
memchr = "2"
# File system watching
notify = { version = "6", default-features = false, features = ["macos_fsevent"] }
notify-debouncer-mini = { version = "0.4", default-features = false }
# Graph utilities
petgraph = { version = "0.6", default-features = false, features = ["graphmap"] }
proc-macro2 = "1"
poll-promise = { version = "0.3" }
quote = "1"
# Open file dialogs
rfd = { version = "0.14", features = ["file-handle-inner"] }
sublime_fuzzy = "0.7"
syn = { version = "2", features = ["full", "extra-traits"] }
syntect = { version = "5", default-features = false, features = ["parsing", "yaml-load", "default-themes"] }
tantivy = { version = "0.22" }
# Temporary directory for compilation
temp-dir = "0.1"
# cli colors
termcolor = "1"
# Error types
thiserror = "1"
wasm-bindgen-futures = "0.4"
webbrowser = "1"
winresource = "0.1"
[profile.release]
lto = "thin"
codegen-units = 4
[profile.release-web]
inherits = "release"
opt-level = "s"