Re-enable fullscreen toggling
[mandelwow.git] / Cargo.toml
1 #cargo-features = ["edition"]
2
3 [package]
4 name = "mandelwow"
5 version = "0.7.0"
6 authors = ["Bernie Innocenti <bernie@codewiz.org>"]
7 license = "GPL-3.0+"
8 edition = '2018'
9
10 [profile.release]
11 lto = true
12 panic = "unwind"
13 opt-level = 3
14
15 [dependencies]
16 cgmath = "*"
17 #gleam = "*"
18 glium = "0.26.0"
19 glutin = "0.23.0"
20 image = { version = "*", features = ["png_codec"], optional = true }
21 libxm = "1.0.0"
22 rust-rocket = { path = "rust-rocket", optional = true }
23 rand = "*"
24 sdl2 = "*"
25
26 [features]
27 default = ["image", "logging"]
28 min = []
29 logging = []
30 editor = ["rust-rocket"]
31
32 #[replace]
33 #"glutin:0.7.4" = { path = "/home/bernie/src/glutin" }
34 #"glium:0.16.0" = { path = "/home/bernie/src/glium" }
35
36 [target.armv7-linux-androideabi]
37 ar = "$ANDROID_NDK_HOME/arm/bin/arm-linux-androideabi-ar"
38 linker = "$ANDROID_NDK_HOME/arm/bin/arm-linux-androideabi-clang"
39
40 [lib]
41 name = "mandelwow_lib"
42 path = "lib.rs"
43
44 [[bin]]
45 name = "mandelwow"
46 path = "main.rs"