aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 8be897a5fc58c712cc6503d421e08c9b6975a9a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "mcproto-rs"
version = "0.1.0"
authors = ["Joey Sacchini <joey@sacchini.net>"]
edition = "2018"
license = "Apache-2.0"
keywords = ["minecraft", "games", "protocol", "serialziers", "deserializers", "packets", "mc"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde_json = "1.0"
regex = "1"
lazy_static = "1.4"
rand = "0.7"
flate2 = "1.0.17"
base64 = "0.12.3"
paste = "1.0.1"

[dependencies.serde]
version = "1.0.116"
features = [ "derive" ]