fix: Use custom fork for darwin-libproc version patch

This commit is contained in:
Arne Beer 2023-01-05 12:18:01 +01:00
parent fa925dcf59
commit 6b6efd233e
No known key found for this signature in database
GPG key ID: CC9408F679023B65
2 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View file

@ -462,7 +462,7 @@ dependencies = [
[[package]]
name = "darwin-libproc"
version = "0.2.0"
source = "git+https://github.com/jamwaffles/darwin-libproc.git?rev=cbd571e4be87a6603de328d1f1f0ad54d7bdfedf#cbd571e4be87a6603de328d1f1f0ad54d7bdfedf"
source = "git+https://github.com/Nukesor/darwin-libproc.git?branch=master#d783719c2f61a347a409ffe4ef1b2d893eec555a"
dependencies = [
"darwin-libproc-sys",
"libc",
@ -472,7 +472,7 @@ dependencies = [
[[package]]
name = "darwin-libproc-sys"
version = "0.2.0"
source = "git+https://github.com/jamwaffles/darwin-libproc.git?rev=cbd571e4be87a6603de328d1f1f0ad54d7bdfedf#cbd571e4be87a6603de328d1f1f0ad54d7bdfedf"
source = "git+https://github.com/Nukesor/darwin-libproc.git?branch=master#d783719c2f61a347a409ffe4ef1b2d893eec555a"
[[package]]
name = "diff"

View file

@ -73,6 +73,6 @@ procfs = { version = "0.14.2", default-features = false }
libproc = "0.12.0"
[target.'cfg(target_vendor = "apple")'.dev-dependencies]
# fork that fixes a version conflict, see heim-rs/darwin-libproc#3
# Fork that fixes a version conflict, see heim-rs/darwin-libproc#3
# only used as a test dependency.
darwin-libproc = { git = "https://github.com/jamwaffles/darwin-libproc.git", rev = "cbd571e4be87a6603de328d1f1f0ad54d7bdfedf" }
darwin-libproc = { git = "https://github.com/Nukesor/darwin-libproc.git", branch = "master" }