Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions quickwit/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion quickwit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ async-speed-limit = "0.4"
async-trait = "0.1"
atomic_float = "1.1"
backtrace = "0.3"
base64 = "0.22"
base64 = "0.23"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Disable the unused default SIMD feature

With base64 0.23, this shorthand newly enables its default-on simd-unsafe feature, although the repository's base64 call sites use GeneralPurpose/BASE64_STANDARD rather than the Simd, Avx2, or Neon engines. This unnecessarily compiles unsafe architecture-specific implementations into every workspace consumer; declare the dependency with default-features = false and enable only the required std/alloc feature.

AGENTS.md reference: AGENTS.md:L104-L112

Useful? React with 👍 / 👎.

binggan = { version = "0.17" }
bitpacking = "0.9"
bytes = { version = "1", features = ["serde"] }
Expand Down
Loading