X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=Cargo.toml;h=e683780b800ca3042e2d0e4b00a219e3d0103a33;hb=a8881527feaf60d0f01bc44d118fe094204fdc39;hp=36dedd851dec40efc90621f5f7f4534f1ec079f8;hpb=8f5b525e37e82d260601e7052a49a6515b6100d8;p=mandelwow.git diff --git a/Cargo.toml b/Cargo.toml index 36dedd8..e683780 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,24 +1,29 @@ +#cargo-features = ["edition"] + [package] name = "mandelwow" version = "0.7.0" authors = ["Bernie Innocenti "] license = "GPL-3.0+" +edition = '2018' [profile.release] lto = true -# 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" -image = { version = "0.14.0", features = ["png_codec"], optional = true } +#gleam = "*" +glium = "0.27" +glutin = "0.24" +image = { version = "*", features = ["png_codec"], optional = true } +instant = "*" libxm = "1.0.0" rust-rocket = { path = "rust-rocket", optional = true } rand = "*" sdl2 = "*" +winit = { version = "*", features = ["stdweb"] } [features] default = ["image", "logging"]