Put text on the top faces of cubes.
[mandelwow.git] / Cargo.toml
index f3f65b9f3256fd80d5c60524bc0d4f8e6cbdded1..4d56af3aeb5f6c332da83121de4dd80aae099f3f 100644 (file)
@@ -5,20 +5,29 @@ authors = ["Bernie Innocenti <bernie@codewiz.org>"]
 license = "GPL-3.0+"
 
 [profile.release]
-#lto = true
-panic = 'abort'
+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"
 genmesh = "0.4.1"
-image = { version = "0.13.0", features = ["png_codec"] }
+image = { version = "0.14.0", features = ["png_codec"], optional = true }
 libxm = "1.0.0"
 obj = { version = "0.5", features = ["usegenmesh"] }
+rust-rocket = { path = "rust-rocket", optional = true }
 rand = "*"
 sdl2 = "*"
 
+[features]
+default = ["image", "logging"]
+min = []
+logging = []
+editor = ["rust-rocket"]
+
 #[replace]
 #"glutin:0.7.4" = { path = "/home/bernie/src/glutin" }
 #"glium:0.16.0" = { path = "/home/bernie/src/glium" }