-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (36 loc) · 829 Bytes
/
Cargo.toml
File metadata and controls
42 lines (36 loc) · 829 Bytes
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
[package]
name = "nsengine"
version = "0.1.0"
authors = ["Nobbele <realnobbele@gmail.com>"]
edition = "2018"
build = "build-zip.rs"
default-run = "nsengine-example"
[lib]
name = "nsengine"
path = "src/lib.rs"
[[bin]]
name = "nsengine-example"
path = "src/main.rs"
[[bin]]
name = "nsengine-dist"
path = "src/main_dist.rs"
[dependencies]
ggez = { git = "https://github.com/nobbele/ggez", branch = "devel" }
novelscript = { git = "https://github.com/nobbele/novelscript" }
rust-ini = "0.16"
serde_json = "1.0"
serde = "1.0.117"
rodio = "0.13.0"
image = "0.23.12"
simple-logging = "2.0.2"
log = { version = "0.4.11", features = ["std", "serde"] }
derive-new = "0.5"
enum_dispatch = "0.3.4"
webbrowser = "0.5.5"
glam = "0.11.2"
[build-dependencies]
fs_extra = "1.2.0"
zip = "0.5.8"
walkdir = "2.3.1"
[profile.dev]
opt-level = 3