1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Skip doctests altogehter since they are flaky
Author: Matthias Geiger <werdahias@debian.org>
Forwarded: not-needed
Last-Update: 2025-04-27
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,6 +9,9 @@
categories = ["api-bindings", "hardware-support", "no-std"]
keywords = ["intrinsics", "simd"]
+[lib]
+doctest = false
+
[dependencies]
# If enabled, gives bytemuck trait impls for our types
bytemuck = {version = "1.2", optional = true}
|