Windows cpal conflict fix not released yet so we need to use the git version

This commit is contained in:
Imbris 2020-07-13 01:08:40 -04:00
parent a0d88e0774
commit 7ab4f71b83
2 changed files with 5 additions and 2 deletions

3
Cargo.lock generated
View File

@ -5131,8 +5131,7 @@ dependencies = [
[[package]] [[package]]
name = "winit" name = "winit"
version = "0.22.2" version = "0.22.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/rust-windowing/winit.git?rev=6919c2fb2d45dc4063c9ef52a69d857ed30657c7#6919c2fb2d45dc4063c9ef52a69d857ed30657c7"
checksum = "1e4ccbf7ddb6627828eace16cacde80fc6bf4dbb3469f88487262a02cf8e7862"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"cocoa 0.20.2", "cocoa 0.20.2",

View File

@ -72,3 +72,7 @@ debug = false
[profile.releasedebuginfo] [profile.releasedebuginfo]
inherits = 'release' inherits = 'release'
debug = 1 debug = 1
# cpal conflict fix isn't released yet
[patch.crates-io]
winit = { git = "https://github.com/rust-windowing/winit.git", rev = "6919c2fb2d45dc4063c9ef52a69d857ed30657c7" }