-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 989 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 989 Bytes
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
[package]
name = "specter-mem"
version = "1.0.5"
edition = "2024"
description = "ARM64 memory manipulation framework for iOS/macOS — inline hooking, stealth code patching, hardware breakpoints, and shellcode loading"
license = "MIT"
repository = "https://github.com/Batchhh/libspecter"
readme = "README.md"
keywords = ["arm64", "ios", "macos", "memory", "hooking"]
categories = ["development-tools::ffi", "os::macos-apis", "memory-management"]
documentation = "https://docs.rs/specter-mem"
exclude = ["target/", "docs/"]
[package.metadata.docs.rs]
default-target = "aarch64-apple-darwin"
targets = ["aarch64-apple-darwin"]
[lib]
name = "specter"
crate-type = ["staticlib", "rlib"]
[dependencies]
mach2 = "0.6.0"
once_cell = "1"
parking_lot = "0.12"
thiserror = "2.0.18"
libc = "0.2"
hex = "0.4"
dashmap = "6"
jit-assembler = { version = "0.3", default-features = false, features = ["aarch64"] }
log = "0.4"
oslog = { version = "0.2", default-features = false, features = ["logger"] }