xash3d-master/query/Cargo.toml

22 lines
492 B
TOML
Raw Normal View History

2023-10-19 07:54:06 +00:00
[package]
name = "xash3d-query"
version = "0.1.0"
license = "GPL-3.0-only"
authors = ["Denis Drakhnia <numas13@gmail.com>"]
edition = "2021"
rust-version = "1.56"
[features]
default = ["color"]
color = ["termion"]
2023-10-19 07:54:06 +00:00
[dependencies]
2023-10-20 07:05:09 +00:00
libc = "0.2.148"
2023-10-19 07:54:06 +00:00
thiserror = "1.0.49"
getopts = "0.2.21"
fastrand = "2.0.1"
2023-10-19 07:54:06 +00:00
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
termion = { version = "2", optional = true }
2023-10-19 07:54:06 +00:00
xash3d-protocol = { path = "../protocol", version = "0.1.0" }