aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorJoey Sacchini <joey@sacchini.net>2020-12-02 19:28:56 -0500
committerJoey Sacchini <joey@sacchini.net>2020-12-02 19:28:56 -0500
commita75dccefd966560793e9776bc44d09fa22733a43 (patch)
tree7b99ebeaac6726f5141babbedd4b41c27ba3e586 /Cargo.toml
downloadcraftio-rs-a75dccefd966560793e9776bc44d09fa22733a43.tar.gz
craftio-rs-a75dccefd966560793e9776bc44d09fa22733a43.tar.bz2
craftio-rs-a75dccefd966560793e9776bc44d09fa22733a43.zip
init commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..56b60b9
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,19 @@
+[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_16_3"] }
+futures = { version = "0.3.8", optional = true }
+async-trait = { version = "0.1.42", optional = true }
+aes = "0.6.0"
+thiserror = "1.0"
+flate2 = { version = "1.0", features = ["zlib"] }
+
+[features]
+default = ["async"]
+
+async = ["futures", "async-trait"] \ No newline at end of file