From e81ebc75e30e0a0a661c92f5838790ebf2cd3623 Mon Sep 17 00:00:00 2001 From: griffi-gh Date: Tue, 16 May 2023 12:27:57 +0200 Subject: [PATCH] Use git glium --- Cargo.lock | 5 ++--- kubi/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bb53ae4..ab63596 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", ] diff --git a/kubi/Cargo.toml b/kubi/Cargo.toml index 36e55b5..5cf10c3 100644 --- a/kubi/Cargo.toml +++ b/kubi/Cargo.toml @@ -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"] }