aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 6124744575d87cef9ebb06a2af70bb3e84f35cb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "craftio-rs"
version = "0.1.0"
authors = ["Joey Sacchini <joey@sacchini.net>"]
edition = "2018"
license = "APACHE 2.0"

[dependencies]
mcproto-rs = { git = "https://github.com/Twister915/mcproto-rs", branch = "master", default-features = false, features = ["std", "v1_15_2", "v1_16_3"] }
aes = "0.6.0"
flate2 = { version = "1.0", features = ["zlib"] }

thiserror = "1.0"

futures = { version = "0.3.8", optional = true }
async-trait = { version = "0.1.42", optional = true }

[features]
default = ["async"]

async = ["futures", "async-trait"]