-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 700 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 700 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
[package]
name = "tile_collapse"
version = "0.3.0"
authors = ["zoomiti"]
edition = "2021"
readme = "README.md"
license-file = "LICENSE"
keywords = ["graphics"]
categories = ["command-line-utilities"]
repository = "https://github.com/zoomiti/tile_collapse"
description = "An implementation of the Wave Function Collapse algorithm for creating images from tilesets and adjacency data"
[lib]
name = "tile_collapse"
path = "src/lib.rs"
[[bin]]
name = "tile_collapse"
path = "src/main.rs"
[dependencies]
clap = { version = "3.2.16", features = ["derive"] }
image = "0.24.3"
indicatif = "0.17.0"
rand = "0.8.5"
rand_chacha = "0.3.1"
serde = { version = "1.0.141", features = ["derive"] }
toml = "0.5.9"