diff options
author | Rafal <rafal.mielniczuk2@gmail.com> | 2025-01-28 18:12:03 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-28 21:12:03 +0300 |
commit | 85894d42cb8f9684154555bce0e6b7638e753c8b (patch) | |
tree | fa8144a9d43f08228d620ff40aee28e4c9b50948 | |
parent | 35dd9e27a1a32553dc196840122d1beb3ce8c7ff (diff) | |
download | r-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.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |