Skip to content

Commit

Permalink
Patch miniaudio, piet and druid to updated versions supporting OpenBSD
Browse files Browse the repository at this point in the history
Cargo.lock created with
	$ cargo update -p miniaudio \
	    -p piet -p piet-common -p piet-cairo \
	    -p druid -p druid-shell -p druid-derive
  • Loading branch information
klemensn committed Oct 8, 2021
1 parent 3d83454 commit fb7d591
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 18 deletions.
28 changes: 11 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 18 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,21 @@ members = [
]

[profile.dev]
split-debuginfo = "unpacked"
split-debuginfo = "unpacked"

# (not merged yet) "Add OpenBSD amd64 bindings" https://github.com/ExPixel/miniaudio-rs/pull/75
[patch."git+https://github.com/jpochyla/miniaudio-rs"]
miniaudio = { git = "https://github.com/klemensn/miniaudio-rs", branch = "openbsd" }

# (merged already) "Build on OpenBSD" https://github.com/linebender/piet/pull/466
[patch.crates-io]
piet = { git = "https://github.com/linebender/piet", commit = "8f7bc70a097d585205573442b970ec087d4e8f3b" }
piet-cairo = { git = "https://github.com/linebender/piet", commit = "8f7bc70a097d585205573442b970ec087d4e8f3b" }
piet-common = { git = "https://github.com/linebender/piet", commit = "8f7bc70a097d585205573442b970ec087d4e8f3b" }

# (merged already) "Build on OpenBSD" https://github.com/linebender/druid/pull/1993
# (not merged yet) "Fix missing import in gtk/window.rs" https://github.com/jpochyla/druid/commit/a9522f58cf2e79662287cc27ab8a6f200fe88400
[patch."git+https://github.com/jpochyla/druid"]
druid = { git = "https://github.com/klemensn/druid", branch = "psst-openbsd" }
druid-derive = { git = "https://github.com/klemensn/druid", branch = "psst-openbsd" }
druid-shell = { git = "https://github.com/klemensn/druid", branch = "psst-openbsd" }

0 comments on commit fb7d591

Please sign in to comment.