-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 745 Bytes
/
Cargo.toml
File metadata and controls
29 lines (24 loc) · 745 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
[package]
name = "rcon"
version = "0.5.2"
authors = ["panicbit <panicbit@users.noreply.github.com>"]
description = "An rcon protocol implementation"
license = "MIT OR Apache-2.0"
keywords = ["source", "rcon", "protocol", "minecraft"]
repository = "https://github.com/panicbit/rust-rcon"
edition = "2018"
resolver = "2"
[dependencies]
err-derive = "0.3.0"
tokio = { version = "1.10.1", features = ["io-util"] }
async-std = { version = "1.9.0", optional = true }
[features]
default = []
rt-async-std = ["async-std"]
rt-tokio = ["tokio/net", "tokio/time"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]
[dev-dependencies]
async-std = { version = "1.9.0", features = ["attributes"] }
futures-timer = "3.0.2"