fix: dependency

This commit is contained in:
Ashley Wulber 2022-08-16 22:11:22 -04:00
parent f1e3e3bf98
commit 71ac7cc86c
No known key found for this signature in database
GPG key ID: 5216D4F46A90A820
2 changed files with 8 additions and 24 deletions

29
Cargo.lock generated
View file

@ -514,11 +514,11 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
[[package]] [[package]]
name = "drm" name = "drm"
version = "0.6.2" version = "0.6.2"
source = "git+https://github.com/Smithay//drm-rs?branch=fix/non_force_probe_memory#3ce92fd7fd9335144d1174a48851c10fd7845a7b" source = "git+https://github.com/Smithay//drm-rs?rev=8b54f45831932fb1f7d6c1b9cb76ff68c342dfd0#8b54f45831932fb1f7d6c1b9cb76ff68c342dfd0"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"bytemuck", "bytemuck",
"drm-ffi 0.2.1 (git+https://github.com/Smithay//drm-rs?branch=fix/non_force_probe_memory)", "drm-ffi",
"drm-fourcc", "drm-fourcc",
"nix 0.24.2", "nix 0.24.2",
] ]
@ -526,18 +526,9 @@ dependencies = [
[[package]] [[package]]
name = "drm-ffi" name = "drm-ffi"
version = "0.2.1" version = "0.2.1"
source = "git+https://github.com/Smithay//drm-rs?branch=fix/non_force_probe_memory#3ce92fd7fd9335144d1174a48851c10fd7845a7b" source = "git+https://github.com/Smithay//drm-rs?rev=8b54f45831932fb1f7d6c1b9cb76ff68c342dfd0#8b54f45831932fb1f7d6c1b9cb76ff68c342dfd0"
dependencies = [ dependencies = [
"drm-sys 0.1.2 (git+https://github.com/Smithay//drm-rs?branch=fix/non_force_probe_memory)", "drm-sys",
"nix 0.24.2",
]
[[package]]
name = "drm-ffi"
version = "0.2.1"
source = "git+https://github.com/Smithay/drm-rs.git?rev=6d34866#6d348667fee897442672f15ce480676d47ce58aa"
dependencies = [
"drm-sys 0.1.2 (git+https://github.com/Smithay/drm-rs.git?rev=6d34866)",
"nix 0.24.2", "nix 0.24.2",
] ]
@ -550,15 +541,7 @@ checksum = "0aafbcdb8afc29c1a7ee5fbe53b5d62f4565b35a042a662ca9fecd0b54dae6f4"
[[package]] [[package]]
name = "drm-sys" name = "drm-sys"
version = "0.1.2" version = "0.1.2"
source = "git+https://github.com/Smithay//drm-rs?branch=fix/non_force_probe_memory#3ce92fd7fd9335144d1174a48851c10fd7845a7b" source = "git+https://github.com/Smithay//drm-rs?rev=8b54f45831932fb1f7d6c1b9cb76ff68c342dfd0#8b54f45831932fb1f7d6c1b9cb76ff68c342dfd0"
dependencies = [
"libc",
]
[[package]]
name = "drm-sys"
version = "0.1.2"
source = "git+https://github.com/Smithay/drm-rs.git?rev=6d34866#6d348667fee897442672f15ce480676d47ce58aa"
dependencies = [ dependencies = [
"libc", "libc",
] ]
@ -1512,7 +1495,7 @@ dependencies = [
"cgmath", "cgmath",
"downcast-rs", "downcast-rs",
"drm", "drm",
"drm-ffi 0.2.1 (git+https://github.com/Smithay/drm-rs.git?rev=6d34866)", "drm-ffi",
"drm-fourcc", "drm-fourcc",
"gbm", "gbm",
"gl_generator", "gl_generator",

View file

@ -65,4 +65,5 @@ lto = "fat"
smithay = { git = "https://github.com/Smithay//smithay", branch = "update/drm-0.7" } smithay = { git = "https://github.com/Smithay//smithay", branch = "update/drm-0.7" }
[patch."https://github.com/Smithay/drm-rs.git"] [patch."https://github.com/Smithay/drm-rs.git"]
drm = { git = "https://github.com/Smithay//drm-rs", branch = "fix/non_force_probe_memory" } drm = { git = "https://github.com/Smithay//drm-rs", rev = "8b54f45831932fb1f7d6c1b9cb76ff68c342dfd0" }
drm-ffi = { git = "https://github.com/Smithay//drm-rs", rev = "8b54f45831932fb1f7d6c1b9cb76ff68c342dfd0" }