Use git glium

This commit is contained in:
griffi-gh 2023-05-16 12:27:57 +02:00
parent fb68f8d12d
commit e81ebc75e3
2 changed files with 3 additions and 4 deletions

5
Cargo.lock generated
View file

@ -686,15 +686,14 @@ dependencies = [
[[package]] [[package]]
name = "glium" name = "glium"
version = "0.32.1" version = "0.32.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/glium/glium?rev=5d50e7#5d50e70628b5516cfd02751d70239586ceb18c92"
checksum = "d2766728ecb86014b91d3d687614b32d65aacbbdc887f424a7b03cba3ab593bf"
dependencies = [ dependencies = [
"backtrace", "backtrace",
"fnv", "fnv",
"gl_generator", "gl_generator",
"glutin", "glutin",
"lazy_static", "lazy_static",
"memoffset 0.6.5", "memoffset 0.8.0",
"smallvec", "smallvec",
"takeable-option", "takeable-option",
] ]

View file

@ -8,7 +8,7 @@ publish = false
kubi-shared = { path = "../kubi-shared" } kubi-shared = { path = "../kubi-shared" }
kubi-logging = { path = "../kubi-logging" } kubi-logging = { path = "../kubi-logging" }
log = "*" log = "*"
glium = "0.32" glium = { git = "https://github.com/glium/glium", rev = "5d50e7" }
glam = { version = "0.23", features = ["debug-glam-assert", "fast-math"] } glam = { version = "0.23", features = ["debug-glam-assert", "fast-math"] }
image = { version = "0.24", default_features = false, features = ["png"] } image = { version = "0.24", default_features = false, features = ["png"] }
strum = { version = "0.24", features = ["derive"] } strum = { version = "0.24", features = ["derive"] }