X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=Cargo.toml;h=516775948420000cd8d0f28f9c56bbf18e89ee63;hb=d435684b264419ec4d8fa5770ce7a15207a67c70;hp=a858c2fb0bcaf798989304961f2f7bf971578d30;hpb=48867a083c40e3f2593f9c7f5ecc8a1792d65b9b;p=mandelwow.git diff --git a/Cargo.toml b/Cargo.toml index a858c2f..5167759 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,20 +1,33 @@ [package] name = "mandelwow" -version = "0.3.0" +version = "0.5.0" authors = ["Bernie Innocenti "] license = "GPL-3.0+" [profile.release] -lto = true -panic = 'abort' +#lto = true +#panic = 'abort' [dependencies] -glium = "*" -glutin = "*" +cgmath = "*" +glium = "0.15.0" +glutin = "0.6.2" genmesh = "0.4.1" +image = "0.12.0" obj = { version = "0.5", features = ["usegenmesh"] } + +[target.'cfg(not(target_os = "emscripten"))'.dependencies] libxm = "1.0.0" sdl2 = "*" +backtrace = "0.2.2" +backtrace-sys = "0.1.10" + +[target.'cfg(target_os = "emscripten")'.dependencies] +glutin = "0.6.1" +backtrace = "0.2.3" + +[replace] +"backtrace:0.2.3" = { git = "https://github.com/badboy/backtrace-rs", branch = "emscripten-fix" } [[bin]] name = "mandelwow"