shulkerbox/Cargo.toml

32 lines
898 B
TOML
Raw Permalink Normal View History

2024-03-21 16:25:57 +01:00
[package]
name = "shulkerbox"
version = "0.1.0"
edition = "2021"
authors = ["Moritz Hölting <moritz@hoelting.dev>"]
description = "Crate for creating Minecraft datapacks in Rust"
2024-09-30 16:53:01 +02:00
categories = ["compilers", "game-development"]
keywords = ["minecraft", "datapack", "mcfunction"]
repository = "https://github.com/moritz-hoelting/shulkerbox"
readme = "README.md"
2024-09-30 16:53:01 +02:00
license = "MIT OR Apache-2.0"
2024-03-21 16:25:57 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["fs_access", "zip"]
fs_access = []
2024-04-25 14:15:35 +02:00
serde = ["dep:serde"]
zip = ["dep:zip"]
2024-03-21 16:25:57 +01:00
[dependencies]
chksum-md5 = "0.0.0"
2024-03-28 00:58:46 +01:00
getset = "0.1.2"
2024-04-25 14:15:35 +02:00
serde = { version = "1.0.197", optional = true, features = ["derive"] }
serde_json = "1.0.114"
2024-06-15 21:46:47 +02:00
tracing = "0.1.40"
zip = { version = "2.1.3", default-features = false, features = ["deflate", "time"], optional = true }
2024-08-15 22:37:39 +02:00
[dev-dependencies]
2024-09-30 16:53:01 +02:00
tempfile = "3.13.0"