Potato/Cargo.toml
2025-04-05 00:06:22 +02:00

20 lines
644 B
TOML

[workspace]
resolver = "2"
members = ["potato", "potato-data", "potato-protocol", "potato-derive"]
[workspace.package]
version = "0.1.0"
edition = "2024"
[workspace.dependencies]
serde = { version = "1.0.218", features = ["derive"] }
serde_json = "1.0.140"
thiserror = "2.0.11"
uuid = { version = "1.15.1", features = ["serde"] }
bytes = "1"
tokio = { version = "1.43.0", features = ["full"] }
# Build from git, since there has not been a release in over a year
# Original repo: https://github.com/owengage/fastnbt.git Using a fork
# to fix an issue with boolean serialization.
fastnbt = { git = "https://github.com/CheAle14/fastnbt.git" }