From 5309c992c5b55bf297ae252af544244ee17c1367 Mon Sep 17 00:00:00 2001 From: Draphar Date: Thu, 26 Mar 2020 11:06:39 +0100 Subject: [PATCH] Update Cargo.toml The `use_std` feature is deprecated: https://github.com/BurntSushi/rust-memchr/commit/8efd67fcc412445d6978cf35761ab81ed2d6e6fe#diff-80398c5faae3c069e4e6aa2ed11b28c0 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index eb0584c..22ba5bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ quickcheck = { version = "0.8", default-features = false } [features] # stable and pcmp support: opting out of using std, becoming no_std default = ["use_std"] -use_std = ["memchr/use_std"] +use_std = ["memchr/std"] # Internal features for testing & benchmarking & development pattern = []