nbt-rust/shen-nbt5/Cargo.toml

22 lines
677 B
TOML
Raw Normal View History

2023-08-02 19:41:28 +08:00
[package]
2024-02-26 21:45:04 +08:00
name = "shen-nbt5"
2024-03-10 14:26:35 +08:00
version = "0.4.0"
2023-08-02 19:41:28 +08:00
edition = "2021"
2024-03-10 16:20:25 +08:00
description = "Just A FASSST NBT parser/writer"
homepage = "https://github.com/shenjackyuanjie/nbt-rust"
repository = "https://github.com/shenjackyuanjie/nbt-rust"
read = "README.md"
2024-03-10 16:20:45 +08:00
license-file = "../LICENSE"
2024-03-10 16:20:25 +08:00
keywords = ["nbt", "minecraft", "parser", "writer", "fast"]
categories = ["game", "parsing", "serialization"]
authors = ["shenjackyuanjie <3695888@qq.com>", "InfyniteHeap"]
2023-08-02 19:41:28 +08:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2024-02-26 21:45:04 +08:00
[dependencies]
2024-03-10 16:20:25 +08:00
serde = { version = "1.0", features = ["derive"], optional = true }
2024-03-10 15:35:40 +08:00
[features]
default = []
serde = ["dep:serde"]