rust-gamedig/Cargo.toml
Cain 84af4230f7
[Crate] Add feature: serde (#21)
* feat(serde): add additional derives

* fix: remove attr on internal enum

* fix add missing derive
2023-03-13 16:51:33 +02:00

29 lines
772 B
TOML

[package]
name = "gamedig"
version = "0.2.1"
edition = "2021"
authors = [
"CosminPerRam [https://github.com/CosminPerRam]",
"node-GameDig contributors [https://github.com/gamedig/node-gamedig/contributors]",
]
license = "MIT"
description = "Check out servers with this."
homepage = "https://github.com/gamedig/rust-gamedig"
documentation = "https://docs.rs/gamedig/latest/gamedig/"
repository = "https://github.com/gamedig/rust-gamedig"
readme = "README.md"
keywords = ["server", "query", "game", "check", "status"]
rust-version = "1.56.1"
[features]
default = []
no_games = []
serde = ["dep:serde", "serde/derive"]
[dependencies]
byteorder = "1.4.3"
bzip2-rs = "0.1.2"
crc32fast = "1.3.2"
serde_json = "1.0.91"
serde = { version = "1.0.155", optional = true }