forked from SpaceManiac/SpacemanDMM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (30 loc) · 656 Bytes
/
Cargo.toml
File metadata and controls
38 lines (30 loc) · 656 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
[package]
name = "dmm-tools"
version = "0.1.0"
authors = ["Tad Hardesty <tad@platymuus.com>"]
edition = "2018"
[lib]
path = "lib.rs"
[dependencies]
inflate = "0.4.1"
ndarray = "0.13.0"
rand = "0.7.0"
dreammaker = { path = "../dreammaker" }
lodepng = "3.0.0"
[dependencies.bytemuck]
version = "1.5"
features = ["derive"]
[dependencies.bumpalo]
version = "3.0.0"
features = ["collections"]
[dependencies.linked-hash-map]
git = "https://github.com/SpaceManiac/linked-hash-map"
branch = "get-key-value"
[dependencies.png]
version = "0.16.0"
optional = true
[dependencies.gfx_core]
version = "0.9.2"
optional = true
[dev-dependencies]
walkdir = "2.0.1"