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]]
name = "glium"
version = "0.32.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2766728ecb86014b91d3d687614b32d65aacbbdc887f424a7b03cba3ab593bf"
source = "git+https://github.com/glium/glium?rev=5d50e7#5d50e70628b5516cfd02751d70239586ceb18c92"
dependencies = [
"backtrace",
"fnv",
"gl_generator",
"glutin",
"lazy_static",
"memoffset 0.6.5",
"memoffset 0.8.0",
"smallvec",
"takeable-option",
]

View file

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