mirror of
https://github.com/italicsjenga/valence.git
synced 2024-12-23 22:41:30 +11:00
7e7af6e7c1
## Description Sets Bevy dependencies to version 0.10 instead of the previous commit hash.
45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[package]
|
|
name = "valence_anvil"
|
|
description = "A library for Minecraft's Anvil world format."
|
|
documentation = "https://docs.rs/valence_anvil/"
|
|
repository = "https://github.com/valence-rs/valence/tree/main/crates/valence_anvil"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
keywords = ["anvil", "minecraft", "deserialization"]
|
|
version = "0.1.0"
|
|
authors = ["Ryan Johnson <ryanj00a@gmail.com>", "TerminatorNL <TerminatorNL@users.noreply.github.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
byteorder = "1.4.3"
|
|
flate2 = "1.0.25"
|
|
thiserror = "1.0.37"
|
|
num-integer = "0.1.45" # TODO: remove when div_ceil is stabilized.
|
|
valence = { version = "0.2.0", path = "../valence", optional = true }
|
|
valence_nbt = { version = "0.5.0", path = "../valence_nbt" }
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0.68"
|
|
bevy_ecs = "0.10"
|
|
clap = "4.1.4"
|
|
criterion = "0.4.0"
|
|
flume = "0.10.14"
|
|
fs_extra = "1.2.0"
|
|
tempfile = "3.3.0"
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = "0.3.16"
|
|
zip = "0.6.3"
|
|
|
|
[dev-dependencies.reqwest]
|
|
version = "0.11.12"
|
|
default-features = false
|
|
# Avoid OpenSSL dependency on Linux.
|
|
features = ["rustls-tls", "blocking", "stream"]
|
|
|
|
[[bench]]
|
|
name = "world_parsing"
|
|
harness = false
|
|
|
|
[features]
|
|
default = ["valence"]
|