-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (40 loc) · 1.22 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
[package]
name = "tihle"
version = "0.2.0"
authors = ["Peter Marheine <peter@taricorp.net>"]
edition = "2018"
license = "GPL-3.0-only"
build = "build.rs"
[[bin]]
name = "tihle"
[profile.release]
lto = true
[features]
# env_logger supports regex filtering which can be enabled by turning on
# env_logger/regex if desired.
# log/release_max_level_info (or similar) can also be turned on to remove
# debug logs from the binary completely.
git-build-info = [ "built/git2" ]
[dependencies]
arr_macro = "0.1.3"
bitflags = "1.0"
log = "0.4.8"
num-derive = "0.3"
num-traits = "0.2"
sdl2 = { version = "0.35" }
[target.'cfg(not(target_os = "emscripten"))'.dependencies]
env_logger = { version = "0.9", default-features = false, features = ["termcolor", "humantime", "atty"] }
[target.'cfg(target_os = "emscripten")'.dependencies]
simple_logger = { version = "2", default-features = false, features = ["timestamps"] }
[build-dependencies]
cc = "1"
embed-resource = "1.3.3"
walkdir = "2"
[build-dependencies.built]
version = "0.5"
features = [ "chrono" ]
[build-dependencies.spasm-multipage]
path = "os/spasm-multipage"
[dev-dependencies]
quickcheck = { version = "1", default-features = false, features = ["use_logging"] }
quickcheck_macros = "1"