From a75dccefd966560793e9776bc44d09fa22733a43 Mon Sep 17 00:00:00 2001 From: Joey Sacchini Date: Wed, 2 Dec 2020 19:28:56 -0500 Subject: init commit --- Cargo.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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 "] +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 -- cgit