summaryrefslogtreecommitdiff
path: root/subprojects/thiserror/impl/Cargo.toml
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-12-21 04:20:53 +0000
committerJohn Turner <jturner.usa@gmail.com>2025-12-22 08:05:20 +0000
commit96708614ba46c42f87b23f2a957c510499d8811e (patch)
tree372dcf90f1a6fdf1b90f5d006ce7a32717f47166 /subprojects/thiserror/impl/Cargo.toml
parent0ec856797256b5d9807929e1b32c03756eb43124 (diff)
downloadgentoo-utils-master.tar.gz
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.
Diffstat (limited to 'subprojects/thiserror/impl/Cargo.toml')
-rw-r--r--subprojects/thiserror/impl/Cargo.toml28
1 files changed, 0 insertions, 28 deletions
diff --git a/subprojects/thiserror/impl/Cargo.toml b/subprojects/thiserror/impl/Cargo.toml
deleted file mode 100644
index 1d7d2f9..0000000
--- a/subprojects/thiserror/impl/Cargo.toml
+++ /dev/null
@@ -1,28 +0,0 @@
-[package]
-name = "thiserror-impl"
-version = "2.0.17"
-authors = ["David Tolnay <dtolnay@gmail.com>"]
-description = "Implementation detail of the `thiserror` crate"
-edition = "2021"
-license = "MIT OR Apache-2.0"
-repository = "https://github.com/dtolnay/thiserror"
-rust-version = "1.68"
-
-[lib]
-proc-macro = true
-
-[dependencies]
-proc-macro2 = "1.0.74"
-quote = "1.0.35"
-syn = "2.0.87"
-
-[package.metadata.docs.rs]
-targets = ["x86_64-unknown-linux-gnu"]
-rustdoc-args = [
- "--generate-link-to-definition",
- "--generate-macro-expansion",
- "--extern-html-root-url=core=https://doc.rust-lang.org",
- "--extern-html-root-url=alloc=https://doc.rust-lang.org",
- "--extern-html-root-url=std=https://doc.rust-lang.org",
- "--extern-html-root-url=proc_macro=https://doc.rust-lang.org",
-]