File: 2002_release_testing.patch

package info (click to toggle)
rust-axum 0.8.4-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,356 kB
  • sloc: javascript: 35; makefile: 24; sql: 6; sh: 1
file content (17 lines) | stat: -rw-r--r-- 511 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: skip test failing when compiling in release mode
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2024-02-14
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/axum-macros/src/lib.rs
+++ b/axum-macros/src/lib.rs
@@ -543,7 +543,7 @@
 ///
 /// This macro does not work for functions in an `impl` block that don't have a `self` parameter:
 ///
-/// ```compile_fail
+/// ```ignore
 /// use axum::{debug_handler, extract::Path};
 ///
 /// struct App {}