ae262eba53dbc0ded5ec43ec27ffbbc606280e7a
[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.14.0", features = ["png_codec"], optional = true }
17 libxm = "1.0.0"
18 obj = { version = "0.5", features = ["usegenmesh"] }
19 rust-rocket = { path = "rust-rocket", optional = true }
20 rand = "*"
21 sdl2 = "*"
22
23 [features]
24 default = ["rust-rocket", "image"]
25 min = []
26
27 [replace]
28 "glutin:0.7.4" = { path = "/home/bernie/src/glutin" }
29 "glium:0.16.0" = { path = "/home/bernie/src/glium" }
30
31 [target.armv7-linux-androideabi]
32 ar = "$ANDROID_NDK_HOME/arm/bin/arm-linux-androideabi-ar"
33 linker = "$ANDROID_NDK_HOME/arm/bin/arm-linux-androideabi-clang"
34
35 [lib]
36 name = "mandelwow_lib"
37 path = "lib.rs"
38
39 [[bin]]
40 name = "mandelwow"
41 path = "main.rs"