-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (36 loc) · 1.13 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (36 loc) · 1.13 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
[package]
name = "shellcide"
version = "0.1.0"
edition = "2024"
authors = ["zer0x64 <zer0x64@pm.me>"]
description = "A shellcoding IDE"
license = "MIT OR Apache-2.0"
repository = "https://github.com/zer0x64/shellcide"
homepage = "https://github.com/zer0x64/shellcide"
readme = "README.md"
[dependencies]
# GUI Toolkit
eframe = "0.29.0"
# Assembler
asm-rs = "0.1.1"
# Disassembler
iced_x86 = { package = "iced-x86", version = "1.21.0" }
# Logging
log = "0.4"
# Thread communication
flume = "0.11.0"
aes = "0.9.0"
ecb = "0.2.0"
rand = "0.10.1"
blake3 = "1.8.5"
chrono = "0.4.44"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
nix = { version = "0.27.1", features = ["ptrace", "signal", "user", "process", "mman", "fs"] }
libc = "0.2.153"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"
console_error_panic_hook = "0.1.7"
web-sys = { version = "0.3.98", features = ["HtmlCanvasElement", "Window", "Document", "Blob", "Url", "FileReader", "FileList", "File", "HtmlAnchorElement", "HtmlInputElement", "Event"] }
wasm-bindgen = "0.2.121"
js-sys = "0.3.98"
getrandom = { version = "0.4", features = ["wasm_js"] }