17 lines
456 B
TOML
17 lines
456 B
TOML
|
[package]
|
||
|
name = "mcquery"
|
||
|
version = "0.1.0"
|
||
|
description = "Query Minecraft servers with Rust"
|
||
|
authors = ["EliasSchriefer <elischriefer@gmail.com>"]
|
||
|
license = "MIT OR Apache-2.0"
|
||
|
edition = "2018"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies.tokio]
|
||
|
version = "1.0"
|
||
|
features = ["net", "time"]
|
||
|
|
||
|
[dev-dependencies.tokio]
|
||
|
version = "1.0"
|
||
|
features = ["macros", "net", "rt-multi-thread", "time"]
|