-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (32 loc) · 994 Bytes
/
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
[package]
name = "eangine"
version = "0.5.0"
authors = ["Ricardo Ribeiro <[email protected]>"]
edition = "2018"
categories = ["game-engines"]
homepage = "https://github.com/rsribeiro/ea_engine/"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/rsribeiro/ea_engine/"
[dependencies]
specs-derive = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
log = "0.4"
[target.'cfg(target_arch = "wasm32")'.dependencies]
stdweb = "0.4"
specs = { version = "0.14", default-features = false }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
specs = "0.14"
simple_logger = "1.3.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rand]
version = "0.7"
[target.'cfg(target_arch = "wasm32")'.dependencies.rand]
version = "0.7"
features = ["stdweb"]
[dependencies.quicksilver]
version = "0.3.18"
default-features = false
features = ["fonts", "sounds", "gamepads"]
[patch.crates-io]
quicksilver = { path = "../quicksilver" }