From 96708614ba46c42f87b23f2a957c510499d8811e Mon Sep 17 00:00:00 2001 From: John Turner Date: Sun, 21 Dec 2025 04:20:53 +0000 Subject: port to meson cargo Use the new unstable meson cargo support. This simplifies the meson.build script and allows to use crates such as clap that require picking up features from Cargo.toml. This also allows us to not embed thiserror in subprojects, and instead use a wrap file with a custom meson.build and some patches to make it compile without running its build.rs script. --- .../thiserror/tests/ui/fallback-impl-with-display.stderr | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 subprojects/thiserror/tests/ui/fallback-impl-with-display.stderr (limited to 'subprojects/thiserror/tests/ui/fallback-impl-with-display.stderr') diff --git a/subprojects/thiserror/tests/ui/fallback-impl-with-display.stderr b/subprojects/thiserror/tests/ui/fallback-impl-with-display.stderr deleted file mode 100644 index 6bd3730..0000000 --- a/subprojects/thiserror/tests/ui/fallback-impl-with-display.stderr +++ /dev/null @@ -1,16 +0,0 @@ -error: expected attribute arguments in parentheses: #[error(...)] - --> tests/ui/fallback-impl-with-display.rs:5:3 - | -5 | #[error] - | ^^^^^ - -error[E0119]: conflicting implementations of trait `std::fmt::Display` for type `MyError` - --> tests/ui/fallback-impl-with-display.rs:4:10 - | -4 | #[derive(Error, Debug)] - | ^^^^^ conflicting implementation for `MyError` -... -8 | impl Display for MyError { - | ------------------------ first implementation here - | - = note: this error originates in the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info) -- cgit v1.2.3