-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathCargo.toml
51 lines (46 loc) · 1003 Bytes
/
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
[package]
name = "bite"
description = "Disassembler"
version = "0.3.0"
edition = "2021"
[dependencies]
nix = { workspace = true }
object = { workspace = true }
commands = { path = "./commands" }
log = { path = "./log" }
gui = { path = "./gui" }
debugvault = { path = "./debugvault" }
[profile.release]
lto = 'thin'
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[workspace]
resolver = "2"
members = [
"log",
"gui",
"commands",
"tokenizing",
"decoder",
"decoder-x86_64",
"decoder-arm",
"decoder-riscv",
"decoder-mips",
"debugvault",
"processor",
"processor_shared",
"infinite_scroll",
"binformat",
"config"
]
[workspace.dependencies]
egui = { version = "0.27", features = ["bytemuck"], default-features = false }
rfd = "0.14"
crossbeam-queue = "0.3"
object = "0.32"
gimli = "0.28"
pdb = { git = "https://github.com/WINSDK/pdb-rs" }
once_cell = "1.18"
nix = { git = "https://github.com/mbyzhang/nix" }
memmap2 = "0.9"
dirs = "5"