-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 863 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "serverstat"
description = "Get server info from QuakeWorld servers."
keywords = ["servers", "quake", "quakeworld"]
repository = "https://github.com/quakeworld/serverstat"
authors = ["Viktor Persson <viktor.persson@arcsin.se>"]
version = "0.1.4"
edition = "2024"
license = "MIT"
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/src/**",
"/tests/**",
]
[dependencies]
anyhow = "1.0.97"
tinyudp = "0.5.1"
quake_serverinfo = { version = "0.8.0", default-features = false, features = [] }
quake_text = "0.3.0"
tokio = { version = "1.44.1", features = ["macros"] }
serde = { optional = true, version = "1.0.219", features = ["derive"] }
serde_json = { optional = true, version = "1.0.140" }
[dev-dependencies]
pretty_assertions = "1.4.1"
[features]
ci = []
json = ["dep:serde", "dep:serde_json", "quake_serverinfo/json"]