aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorJoey Sacchini <joey@sacchini.net>2020-12-07 18:39:15 -0500
committerJoey Sacchini <joey@sacchini.net>2020-12-07 18:39:15 -0500
commit317fe7da922303c9ecf3e8de4d202382067dc5a9 (patch)
tree4e281fc41405685d4a47cb830ed981d844104a4d /Cargo.toml
parentfb57b7dbc7ec4422e29c076a8b0fe777db660a69 (diff)
downloadcraftio-rs-317fe7da922303c9ecf3e8de4d202382067dc5a9.tar.gz
craftio-rs-317fe7da922303c9ecf3e8de4d202382067dc5a9.tar.bz2
craftio-rs-317fe7da922303c9ecf3e8de4d202382067dc5a9.zip
support generic associated types
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 45ae42d..61a9f60 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,10 +17,11 @@ async-trait = { version = "0.1.42", optional = true }
tokio = { version = "0.2", features = ["rt-threaded", "tcp", "io-util", "macros", "dns"], optional = true }
[features]
-default = [ "compression", "encryption" ]
+default = [ "compression", "encryption", "gat", "tokio-io" ]
futures-io = ["futures", "async-trait"]
tokio-io = ["tokio", "async-trait"]
encryption = ["aes"]
compression = [ "flate2" ]
-backtrace = [] \ No newline at end of file
+backtrace = []
+gat = ["mcproto-rs/gat"] \ No newline at end of file