-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (44 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
50 lines (44 loc) · 1.18 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
[workspace]
members = ["crates/pattern-lang", "crates/rusthex-mcp", "crates/rusthex-ipc", "crates/binary-analysis"]
resolver = "2"
[package]
name = "rusthex"
version = "0.1.3"
edition = "2024"
authors = ["Shuzo Kashihara <suman.orega.warukatta@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "A modern hex editor built with Rust and gpui"
repository = "https://github.com/suma/rusthex"
publish = false
[dependencies]
gpui = "0.2.2"
gpui-component = "0.5.1"
memmap2 = "0.9"
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
dirs = "5.0"
encoding_rs = "0.8"
memchr = "2.7"
image = "0.25"
smallvec = "1.15"
pattern-lang = { path = "crates/pattern-lang" }
binary-analysis = { path = "crates/binary-analysis" }
rusthex-ipc = { path = "crates/rusthex-ipc" }
serde_json = "1"
raw-window-handle = "0.6"
chrono = "0.4"
[target.'cfg(target_os = "windows")'.dependencies]
windows = { version = "0.61", features = [
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Shell",
"Win32_Foundation",
"Win32_Graphics_Gdi",
] }
[[bin]]
name = "Pheasant"
path = "src/main.rs"
[target.'cfg(target_os = "windows")'.build-dependencies]
winres = "0.1"
image = "0.25"
[dev-dependencies]
tempfile = "3"