1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 23:44:38 +00:00
azalea/azalea-chat/Cargo.toml
Shayne Hartford 5a460f3871
Fix 1.20.4 branch (#193)
* Add rust rover to .gitignore

* Downgrade to last working nightly version

* Update dependencies and set the simdnbt revision because version doesn't work with git, only path.

* Disable cursor_remaining stabilized feature
2024-12-04 18:09:28 -06:00

27 lines
950 B
TOML

[package]
description = "Parse Minecraft chat messages."
edition = "2021"
license = "MIT"
name = "azalea-chat"
repository = "https://github.com/azalea-rs/azalea/tree/main/azalea-chat"
version = "0.9.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
azalea-buf = ["dep:azalea-buf", "simdnbt"]
numbers = ["dep:azalea-registry", "dep:simdnbt"]
simdnbt = ["dep:simdnbt"]
[dependencies]
azalea-buf = { path = "../azalea-buf", features = [
"serde_json",
], version = "0.9.0", optional = true }
azalea-language = { path = "../azalea-language", version = "0.9.0" }
simdnbt = { version = "0.4", optional = true, git = "https://github.com/azalea-rs/simdnbt", rev = "860d6e1" }
tracing = "0.1.41"
once_cell = "1.20.2"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0.133"
azalea-registry = { path = "../azalea-registry", version = "0.9.0", optional = true }