1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Index: memchr/Cargo.toml
===================================================================
--- memchr.orig/Cargo.toml
+++ memchr/Cargo.toml
@@ -56,7 +56,6 @@ alloc = []
default = ["std"]
libc = []
logging = ["dep:log"]
-rustc-dep-of-std = ["core"]
std = ["alloc"]
use_std = ["std"]
@@ -65,11 +64,6 @@ name = "memchr"
path = "src/lib.rs"
bench = false
-[dependencies.core]
-version = "1.0.0"
-optional = true
-package = "rustc-std-workspace-core"
-
[dependencies.log]
version = "0.4.20"
optional = true
|