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. --- subprojects/thiserror/impl/src/lib.rs | 52 ----------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 subprojects/thiserror/impl/src/lib.rs (limited to 'subprojects/thiserror/impl/src/lib.rs') diff --git a/subprojects/thiserror/impl/src/lib.rs b/subprojects/thiserror/impl/src/lib.rs deleted file mode 100644 index 2ff054b..0000000 --- a/subprojects/thiserror/impl/src/lib.rs +++ /dev/null @@ -1,52 +0,0 @@ -#![allow( - clippy::blocks_in_conditions, - clippy::cast_lossless, - clippy::cast_possible_truncation, - clippy::enum_glob_use, - clippy::expl_impl_clone_on_copy, // https://github.com/rust-lang/rust-clippy/issues/15842 - clippy::manual_find, - clippy::manual_let_else, - clippy::manual_map, - clippy::map_unwrap_or, - clippy::module_name_repetitions, - clippy::needless_pass_by_value, - clippy::range_plus_one, - clippy::single_match_else, - clippy::struct_field_names, - clippy::too_many_lines, - clippy::wrong_self_convention -)] -#![allow(unknown_lints, mismatched_lifetime_syntaxes)] - -extern crate proc_macro; - -mod ast; -mod attr; -mod expand; -mod fallback; -mod fmt; -mod generics; -mod prop; -mod scan_expr; -mod unraw; -mod valid; - -use proc_macro::TokenStream; -use proc_macro2::{Ident, Span}; -use quote::{ToTokens, TokenStreamExt as _}; -use syn::{DeriveInput, parse_macro_input}; - -#[proc_macro_derive(Error, attributes(backtrace, error, from, source))] -pub fn derive_error(input: TokenStream) -> TokenStream { - let input = parse_macro_input!(input as DeriveInput); - expand::derive(&input).into() -} - -#[allow(non_camel_case_types)] -struct private; - -impl ToTokens for private { - fn to_tokens(&self, tokens: &mut proc_macro2::TokenStream) { - tokens.append(Ident::new(concat!("__private"), Span::call_site())); - } -} -- cgit v1.2.3