* Vendor async-minecraft-ping and fix servers returning protocol version -1 * Don't have automod reject server projects * fmt * Add region to search facets * remove AMP .github
35 lines
872 B
TOML
35 lines
872 B
TOML
[package]
|
|
name = "async-minecraft-ping"
|
|
version = "0.8.0"
|
|
authors = ["Jay Vana <jaysvana@gmail.com>"]
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "An async Rust client for the Minecraft ServerListPing protocol"
|
|
readme = "README.md"
|
|
repository = "https://github.com/jsvana/async-minecraft-ping/"
|
|
keywords = ["mc", "minecraft", "serverlistping"]
|
|
categories = ["api-bindings", "asynchronous"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
hickory-resolver = { version = "0.24", optional = true }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
|
|
[dependencies.tokio]
|
|
version = "1.15"
|
|
features = ["io-util", "net", "time"]
|
|
|
|
[dev-dependencies]
|
|
anyhow = "1.0"
|
|
structopt = "0.3"
|
|
|
|
[dev-dependencies.tokio]
|
|
version = "1.15"
|
|
features = ["io-util", "macros", "net", "rt-multi-thread"]
|
|
|
|
[features]
|
|
default = []
|
|
srv = ["hickory-resolver"]
|