From 7aba1f654cf06a8ddf49deaec2f4ba047a0d07d4 Mon Sep 17 00:00:00 2001 From: Takeru Ohta Date: Sat, 8 Jul 2023 19:03:23 +0900 Subject: [PATCH] Update Cargo.toml --- libflate_lz77/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libflate_lz77/Cargo.toml b/libflate_lz77/Cargo.toml index 12d29c4..d3e5da5 100644 --- a/libflate_lz77/Cargo.toml +++ b/libflate_lz77/Cargo.toml @@ -20,8 +20,8 @@ core2 = { version = "0.4", default-features = false, features = ["alloc"] } hashbrown = { version = "0.13" } [dev-dependencies] -libflate = { path = "../", default-features = false } +libflate = { path = "../", version = "2.0", default-features = false } [features] default = ["std"] -std = ["core2/std"] +std = ["core2/std", "libflate/std"]