-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (49 loc) · 1.15 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
49
50
51
52
53
54
55
56
57
58
[package]
name = "bim"
version = "0.0.1"
edition = "2018"
authors = ["William Roe <git@wjlr.org.uk>"]
build = "build.rs"
[package.metadata.winres]
ProductName = "bim"
[dependencies]
libc = "0.2"
time = "0.1.40"
lazy_static = "1.3"
gfx_glyph = "0.16"
gfx = "0.18"
gfx_device_gl = "0.16"
gfx_gl = "0.6.0"
gfx_window_glutin = "0.31"
glutin = { version = "0.21", features = ["serde", "icon_loading"] }
glam = "0.8"
rand = "0.7"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.8"
flame = "0.2"
[target.'cfg(unix)'.dependencies]
errno = "0.2.4"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.5", features = [
"winbase",
"consoleapi",
"shellapi",
"processenv",
"synchapi"
] }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[[bin]]
name = "bim"
doctest = false
doc = false
[profile.release]
debug = false
lto = true
[features]
default = []
# Use EventLoop::run_forever, which is problematic due to rendering (w/ vsync)
# introducing loads of lag to processing events...
# Without this off, use EventLoop::poll_events, which should be more reliable
# performance-wise, just worried about CPU usage.
event-callbacks = []