Deps: Bump twilight versions -> 0.5 (#79)

This commit is contained in:
Vilgot Fredenberg
2021-06-14 16:26:55 +02:00
committed by Kyle Simpson
parent 00c8bc915a
commit d6d6acabe1
4 changed files with 20 additions and 21 deletions

View File

@@ -14,13 +14,13 @@ compile_error!(
#[cfg(all(
feature = "twilight",
not(any(feature = "simd-zlib", feature = "stock-zlib"))
not(any(feature = "zlib-simd", feature = "zlib-stock"))
))]
compile_error!(
"Twilight requires you to specify a zlib backend: \
either the `simd-zlib` or `stock-zlib` feature must be
either the `zlib-simd` or `zlib-stock` feature must be
selected.\n\
If you are unsure, go with `stock-zlib`."
If you are unsure, go with `zlib-stock`."
);
fn main() {}