-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (33 loc) · 1002 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 = "goldberg"
version = "0.1.0"
authors = ["Gareth Francis <gfrancis.dev@gmail.com>"]
edition = "2018"
[profile.release]
lto = true
# TODO: wasm no longer supported, had issues with graphics frameworks
#[lib]
#crate-type = ["cdylib"]
[[bin]]
name = "goldberg"
path = "src/bin/main.rs"
include = ["assets"]
[[bin]]
name = "define-primitive"
path = "src/bin/define-primitive.rs"
[dependencies]
#wasm-bindgen = "0.2.67"
#log = "0.4.11"
#console_error_panic_hook = "0.1.6"
#console_log = "0.2.0"
nphysics3d = { version = "0.17.0", features = ["dim3", "use-wasm-bindgen"] }
ncollide3d = { version = "0.24.0" }
nalgebra = { version = "0.22.0" }
kiss3d = { git = "https://github.com/geefr/kiss3d" }
serde = "1.0.115"
serde_derive = "1.0.115"
serde_json = "1.0.57"
text_io = "0.1.8"
# Audio support - cpal or similar seems useful, but lots of dev to get the boilerplate in..
# Requires alsa dev libs on Linux (libasound2-dev)
# cpal = { version = "0.12.1"} #, features = ["wasm-bindgen"] }