Skip to content

Commit 0cee866

Browse files
committed
Improve macos dylib handling
1 parent be2394a commit 0cee866

File tree

3 files changed

+206
-72
lines changed

3 files changed

+206
-72
lines changed

Cargo.lock

Lines changed: 79 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "memflow-native"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Aurimas Blažulionis <[email protected]>", "ko1N <[email protected]>"]
55
edition = "2021"
66
description = "System call based proxy-OS for memflow"
@@ -16,7 +16,7 @@ categories = [ "api-bindings", "memory-management", "os" ]
1616
crate-type = ["lib", "cdylib"]
1717

1818
[dependencies]
19-
memflow = { version = "0.2", features = ["plugins"] }
19+
memflow = { version = "0.2", features = ["plugins", "goblin"] }
2020
log = "0.4"
2121
libc = { version = "0.2.90" }
2222
itertools = "0.12"
@@ -45,3 +45,7 @@ mach2 = "0.4"
4545
[features]
4646
default = []
4747
plugins = []
48+
unstable_goblin_lossy_macho = ["memflow/unstable_goblin_lossy_macho"]
49+
50+
[patch.crates-io]
51+
goblin = { git = "https://github.com/h33p/goblin", branch = "lossy-macho" }

0 commit comments

Comments
 (0)