-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (40 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#cargo-features = ["edition"]
[package]
name = "mandelwow"
version = "0.7.0"
authors = ["Bernie Innocenti <[email protected]>"]
license = "GPL-3.0+"
edition = '2018'
[profile.release]
lto = true
panic = "unwind"
opt-level = 3
[dependencies]
cgmath = "*"
#gleam = "*"
glium = "0.30"
glutin = "0.27"
winit = { version = "0.25", features = ["web-sys"] }
image = { version = "*", features = ["png_codec"], optional = true }
instant = { version = "0.1", features = ["wasm-bindgen"] }
libxm = "1.0.0"
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" }
#[target.armv7-linux-androideabi]
#ar = "$ANDROID_NDK_HOME/arm/bin/arm-linux-androideabi-ar"
#linker = "$ANDROID_NDK_HOME/arm/bin/arm-linux-androideabi-clang"
[lib]
name = "mandelwow_lib"
path = "lib.rs"
[[bin]]
name = "mandelwow"
path = "main.rs"