MinedMap/Cargo.toml

74 lines
2.4 KiB
TOML
Raw Permalink Normal View History

[workspace]
members = ["crates/*"]
[workspace.package]
edition = "2021"
license = "MIT"
readme = "README.md"
2024-01-07 22:08:55 +01:00
repository = "https://github.com/neocturne/MinedMap"
2023-09-29 17:47:11 +02:00
[workspace.metadata.release]
consolidate-commits = false
pre-release-commit-message = "{{crate_name}} {{version}}"
2023-09-29 17:47:11 +02:00
2023-01-24 18:52:44 +01:00
[package]
name = "minedmap"
2025-01-11 01:54:53 +01:00
version = "2.4.0"
2023-08-21 21:50:32 +02:00
description = "Generate browsable maps from Minecraft save data"
edition.workspace = true
license.workspace = true
2023-08-21 21:50:32 +02:00
readme.workspace = true
repository.workspace = true
2023-08-21 22:01:37 +02:00
exclude = [
"/.github/",
"/docs/",
"/viewer/",
"/resource/",
]
2023-01-24 18:52:44 +01:00
2023-09-29 17:47:11 +02:00
[package.metadata.release]
tag-message = "{{crate_name}} {{version}}"
pre-release-replacements = [
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}"},
{file="CHANGELOG.md", search="\\.\\.\\.HEAD", replace="...{{tag_name}}", exactly=1},
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}"},
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n\n## [Unreleased] - ReleaseDate", exactly=1},
{file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: https://github.com/neocturne/MinedMap/compare/{{tag_name}}...HEAD", exactly=1},
]
2023-01-24 18:52:44 +01:00
[dependencies]
2023-01-24 20:39:54 +01:00
anyhow = "1.0.68"
bincode = "1.3.3"
2024-01-04 12:36:27 +01:00
clap = { version = "4.1.4", features = ["derive", "wrap_help"] }
enum-map = "2.7.3"
2023-01-24 20:39:54 +01:00
fastnbt = "2.3.2"
flate2 = { version = "1.1.0", features = ["zlib-rs"] }
futures-util = "0.3.28"
git-version = "0.3.5"
2025-02-13 19:56:19 +01:00
humantime = "2.1.0"
image = { version = "0.25.1", default-features = false, features = ["png", "webp"] }
indexmap = { version = "2.0.0", features = ["serde"] }
lru = "0.13.0"
minedmap-default-alloc = { version = "0.1.0", path = "crates/default-alloc", optional = true }
2024-01-07 22:26:10 +01:00
minedmap-nbt = { version = "0.1.1", path = "crates/nbt", default-features = false }
2025-01-06 21:25:20 +01:00
minedmap-resource = { version = "0.6.0", path = "crates/resource" }
2025-01-11 01:53:05 +01:00
minedmap-types = { version = "0.1.4", path = "crates/types" }
2025-02-13 19:56:19 +01:00
notify = "8.0.0"
num-integer = "0.1.45"
num_cpus = "1.16.0"
phf = { version = "0.11.2", features = ["macros"] }
rayon = "1.7.0"
regex = "1.10.2"
2024-06-23 01:17:33 +02:00
rustc-hash = "2.0.0"
serde = { version = "1.0.152", features = ["rc", "derive"] }
serde_json = "1.0.99"
tokio = { version = "1.31.0", features = ["rt", "parking_lot", "sync"] }
2023-09-19 23:29:05 +02:00
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
2023-10-12 18:27:49 +02:00
zstd = "0.13.0"
[features]
default = ["jemalloc-auto"]
jemalloc-auto = ["dep:minedmap-default-alloc"]
jemalloc = ["jemalloc-auto", "minedmap-default-alloc/jemalloc"]