Server projects post launch fixes (#5481)
* 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
This commit is contained in:
34
packages/async-minecraft-ping/Cargo.toml
Normal file
34
packages/async-minecraft-ping/Cargo.toml
Normal file
@@ -0,0 +1,34 @@
|
||||
[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"]
|
||||
Reference in New Issue
Block a user