-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 861 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
workspace = { members = ["doclib"] }
[package]
name = "mc_map2png"
version = "0.1.0"
edition = "2021"
description = "This Rust application transforms Minecraft map data from NBT format into a visual PNG image. Additionally, a WebAssembly module is available for converting images on the client side."
authors = ["masaishi <mwishiha@ucsc.edu>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/masaishi/mc_map2png"
documentation = "https://docs.rs/mc_map2png"
keywords = ["minecraft", "map", "nbt", "png", "webassembly"]
categories = ["graphics", "wasm"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
flate2 = "1"
fastnbt = "2"
image = "0.24"
wasm-bindgen = "0.2"
[lib]
path = "src/lib.rs"
crate-type = ["rlib", "cdylib"]
[[bin]]
name = "mc_map2png"
path = "src/main.rs"