1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: disable examples to allow per-feature testing
The directory <examples/> is collection of complete crates, not tests.
This means they cannot be omitted by use of required-features;
they straight off fail to build when required features are unavailable.
.
Theoretically, we could annotate each of them with required features,
and run them when features are satisfied.
But that's too much busy work.
For now, just disable all of them.
Author: Blair Noctis <ncts@debian.org>
Forwarded: not-needed
Last-Update: 2025-03-21
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[workspace]
-members = ["axum", "axum-*", "examples/*"]
+members = ["axum", "axum-*"] #, "examples/*"]
# Only check / build main crates by default (check all with `--workspace`)
default-members = ["axum", "axum-*"]
# Example has been deleted, but README.md remains
|