aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafal <rafal.mielniczuk2@gmail.com>2025-01-28 18:12:03 +0000
committerGitHub <noreply@github.com>2025-01-28 21:12:03 +0300
commit85894d42cb8f9684154555bce0e6b7638e753c8b (patch)
treefa8144a9d43f08228d620ff40aee28e4c9b50948
parent35dd9e27a1a32553dc196840122d1beb3ce8c7ff (diff)
downloadr-alacritty-vte-85894d42cb8f9684154555bce0e6b7638e753c8b.tar.gz
r-alacritty-vte-85894d42cb8f9684154555bce0e6b7638e753c8b.tar.bz2
r-alacritty-vte-85894d42cb8f9684154555bce0e6b7638e753c8b.zip
Disable default-features for memchr
Fixes an issue with std not being disabled when building vte without std feature.
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d5611cc..888ec09 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -24,5 +24,5 @@ arrayvec = { version = "0.7.2", default-features = false }
bitflags = { version = "2.3.3", default-features = false, optional = true }
cursor-icon = { version = "1.0.0", default-features = false, optional = true }
log = { version = "0.4.17", optional = true }
-memchr = "2.7.4"
+memchr = { version = "2.7.4", default-features = false }
serde = { version = "1.0.160", features = ["derive"], optional = true }