diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -19,6 +19,14 @@ panic = "abort" rusttype = "0.9.3" [features] -default = [] +default = ["music"] # Bundle-in SDL. Not enabled for demo submission builds. Useful for compatibility. bundled = ["sdl2/bundled"] +# Don't timeout the demo - pass --features notimeout to disable the DVD screen timeout +notimeout = [] +# Make the window resizable - can let you trigger unexpected/undefined behaviour +resizable = [] +# Use Music +music = [] +# Compiles to <=32k on linux after UPX with --brute +32k = [] |