Remove backtrace fork for emscripten.
[mandelwow.git] / Cargo.toml
1 [package]
2 name = "mandelwow"
3 version = "0.7.0"
4 authors = ["Bernie Innocenti <bernie@codewiz.org>"]
5 license = "GPL-3.0+"
6
7 [profile.release]
8 #lto = true
9 panic = 'abort'
10
11 [dependencies]
12 cgmath = "*"
13 glium = "0.16.0"
14 glutin = "0.7.4"
15 genmesh = "0.4.1"
16 image = { version = "0.13.0", features = ["png_codec"] }
17 obj = { version = "0.5", features = ["usegenmesh"] }
18 libxm = "1.0.0"
19 sdl2 = "*"
20
21 [replace]
22 "glutin:0.7.4" = { path = "/home/bernie/src/glutin" }
23 "glium:0.16.0" = { path = "/home/bernie/src/glium" }
24
25 [lib]
26 name = "mandelwow_lib"
27 path = "lib.rs"
28
29 [[bin]]
30 name = "mandelwow"
31 path = "main.rs"