X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=Cargo.toml;h=67c6efa8e9436fd12ef22d84345ba11d075d45b1;hb=266501b90392c2f0f02292a6e7231b0974f371dc;hp=f327b65330466c59a43c329cc5be7cbbd9309657;hpb=7babb28c6782e473dd4302c930880cb147f0ceb8;p=mandelwow.git diff --git a/Cargo.toml b/Cargo.toml index f327b65..67c6efa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,30 +6,29 @@ license = "GPL-3.0+" [profile.release] lto = true -panic = "abort" +# the crate `bitflags` is compiled with the panic strategy `abort` which is incompatible with this crate's strategy of `unwind` +panic = "unwind" opt-level = 3 [dependencies] cgmath = "*" -glium = "0.16.0" -glutin = "0.7.4" -genmesh = "0.4.1" -image = { version = "0.14.0", features = ["png_codec"], optional = true } +glium = "0.19" +glutin = "0.11" +image = { version = "0.18", features = ["png_codec"], optional = true } libxm = "1.0.0" -obj = { version = "0.5", features = ["usegenmesh"] } rust-rocket = { path = "rust-rocket", optional = true } rand = "*" sdl2 = "*" [features] -default = ["image", "editor", "logging"] +default = ["image", "logging"] min = [] logging = [] editor = ["rust-rocket"] -[replace] -"glutin:0.7.4" = { path = "/home/bernie/src/glutin" } -"glium:0.16.0" = { path = "/home/bernie/src/glium" } +#[replace] +#"glutin:0.7.4" = { path = "/home/bernie/src/glutin" } +#"glium:0.16.0" = { path = "/home/bernie/src/glium" } [target.armv7-linux-androideabi] ar = "$ANDROID_NDK_HOME/arm/bin/arm-linux-androideabi-ar"