xash3d-master/query/Cargo.toml

27 lines
749 B
TOML
Raw Normal View History

2023-10-19 10:54:06 +03:00
[package]
name = "xash3d-query"
description = "Tool for querying servers from Xash3D master server"
2023-10-19 10:54:06 +03:00
version = "0.1.0"
license = "GPL-3.0-only"
keywords = ["xash3d"]
categories = ["command-line-utilities"]
2023-10-19 10:54:06 +03:00
authors = ["Denis Drakhnia <numas13@gmail.com>"]
edition = "2021"
rust-version = "1.56"
homepage = "https://xash.su"
repository = "https://git.mentality.rip/numas13/xash3d-master"
2023-10-19 10:54:06 +03:00
[features]
default = ["color"]
color = ["crossterm"]
2023-10-19 10:54:06 +03:00
[dependencies]
2023-10-20 10:05:09 +03:00
libc = "0.2.148"
2023-10-19 10:54:06 +03:00
thiserror = "1.0.49"
getopts = "0.2.21"
fastrand = "2.0.1"
2023-10-19 10:54:06 +03:00
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
crossterm = { version = "0.25.0", default-features = false, optional = true }
2023-10-19 10:54:06 +03:00
xash3d-protocol = { path = "../protocol", version = "0.1.0" }