[package]
edition = "2024"
name = "silverfish"
version = "0.3.0"
authors = [
"ReeZey",
"VilleOlof",
]
build = false
exclude = [
"tests/*",
"logo.png",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Easily edit Minecraft worlds with a simple, fast and powerful API"
readme = "readme.md"
keywords = [
"minecraft",
"nbt",
"mca",
"edit",
"block",
]
categories = [
"parser-implementations",
"game-development",
]
license = "MIT"
repository = "https://github.com/VilleOlof/silverfish"
[lib]
name = "silverfish"
path = "src/lib.rs"
[[bin]]
name = "fill_region"
path = "src/bin/fill_region.rs"
[[bin]]
name = "get_all"
path = "src/bin/get_all.rs"
[[bin]]
name = "set_block"
path = "src/bin/set_block.rs"
[[bench]]
name = "full_region_set_block"
path = "benches/full_region_set_block.rs"
harness = false
[dependencies.ahash]
version = "0.8"
[dependencies.dashmap]
version = "6.1.0"
features = ["rayon"]
[dependencies.fixedbitset]
version = "0.5"
[dependencies.mca]
version = "1.1"
[dependencies.rayon]
version = "1.10"
[dependencies.simdnbt]
version = "0.8.0"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.3"
[profile.profiling]
debug = 2
inherits = "release"