MinedMap/Cargo.toml
Matthias Schiffer 646534c755
Cargo.toml: add workspace readme key
cargo-outdated requires the key to be set to allow inheriting it.
2023-09-17 19:24:16 +02:00

50 lines
1.3 KiB
TOML

[workspace]
members = ["crates/*"]
[workspace.package]
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/NeoRaider/MinedMap"
[package]
name = "minedmap"
version = "0.1.0"
description = "Generate browsable maps from Minecraft save data"
edition.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
exclude = [
"/.github/",
"/docs/",
"/viewer/",
"/resource/",
]
[dependencies]
anyhow = "1.0.68"
bincode = "1.3.3"
clap = { version = "4.1.4", features = ["derive"] }
fastnbt = "2.3.2"
futures-util = "0.3.28"
git-version = "0.3.5"
glam = "0.24.0"
image = { version = "0.24.5", default-features = false, features = ["png"] }
indexmap = { version = "2.0.0", features = ["serde"] }
lru = "0.11.0"
minedmap-nbt = { version = "0.1.0", path = "crates/nbt", default-features = false }
minedmap-resource = { version = "0.1.0", path = "crates/resource" }
minedmap-types = { version = "0.1.0", path = "crates/types" }
num-integer = "0.1.45"
num_cpus = "1.16.0"
rayon = "1.7.0"
rustc-hash = "1.1.0"
serde = { version = "1.0.152", features = ["rc", "derive"] }
serde_json = "1.0.99"
tokio = { version = "1.31.0", features = ["rt", "parking_lot", "sync"] }
zstd = "0.12.3"
[features]
default = ["zlib-ng"]
zlib-ng = ["minedmap-nbt/zlib-ng"]