-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (31 loc) · 893 Bytes
/
Cargo.toml
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
34
35
36
[package]
name = "craftping"
version = "0.5.0"
authors = ["kiwiyou <[email protected]>"]
edition = "2021"
description = "Minecraft Server List Ping Implementation"
license = "MIT"
keywords = ["minecraft", "ping"]
categories = ["network-programming"]
repository = "https://github.com/kiwiyou/craftping"
[package.metadata.docs.rs]
all-features = true
rustc-args = ["--cfg", "docsrs"]
[features]
default = ["sync"]
sync = []
async-futures = ["futures"]
async-tokio = ["tokio"]
[dependencies]
base64 = "0.21.7"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"
futures = { version = "0.3.30", optional = true }
[dependencies.tokio]
version = "1.12.0"
optional = true
default-features = false
features = ["io-util"]
[dev-dependencies]
tokio = { version = "1.12.0", features = ["net", "macros", "rt"] }
async-std = { version = "1.10.0", features = ["attributes"] }