diff options
author | Joey Sacchini <joey@sacchini.net> | 2021-01-09 14:49:38 -0500 |
---|---|---|
committer | Joey Sacchini <joey@sacchini.net> | 2021-01-09 14:49:38 -0500 |
commit | 030dddd3aecb21e44a4e383a95b947dda62cfaca (patch) | |
tree | eb6e13db571f0cdd0ec8fac4f59cadd803de73b9 /Cargo.toml | |
parent | c321bdd5ffd0e893dd9166f4052b70c72a09d4e6 (diff) | |
download | craftio-rs-030dddd3aecb21e44a4e383a95b947dda62cfaca.tar.gz craftio-rs-030dddd3aecb21e44a4e383a95b947dda62cfaca.tar.bz2 craftio-rs-030dddd3aecb21e44a4e383a95b947dda62cfaca.zip |
depend on crates.io version of mcproto-rs
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,13 +4,14 @@ version = "0.1.0" authors = ["Joey Sacchini <joey@sacchini.net>"] edition = "2018" license = "APACHE 2.0" +keywords = ["minecraft", "games", "io", "async", "futures"] description = "A crate to read & write packets defined in mcproto-rs to I/O sinks/sources" homepage = "https://github.com/Twister915/craftio-rs" repository = "https://github.com/Twister915/craftio-rs" readme = "README.md" [dependencies] -mcproto-rs = { git = "https://github.com/Twister915/mcproto-rs", branch = "master", features = ["std"], default-features = false } +mcproto-rs = { version = "0.2.0", branch = "master", features = ["std"], default-features = false } aes = { version = "0.6", optional = true } flate2 = { version = "1.0", features = ["zlib"], optional = true } |