aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 829b191f5024d4317b83659dc5865c2c4cc9ff4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[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"
md5 = "0.7.0"

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