#metadata #cargo-metadata #cargo #downstream #reverse #inject

build inwelling

Collects information from downstream crates at compile-time

12 releases

0.5.5 Feb 9, 2024
0.5.4 Feb 4, 2024
0.5.1 Jan 30, 2024
0.5.0 Mar 22, 2023
0.1.2 Feb 15, 2021

#144 in Build Utils

Download history 8/week @ 2023-12-22 14/week @ 2024-01-05 58/week @ 2024-01-12 36/week @ 2024-01-19 23/week @ 2024-01-26 27/week @ 2024-02-02 32/week @ 2024-02-09 51/week @ 2024-02-16 128/week @ 2024-02-23 98/week @ 2024-03-01 52/week @ 2024-03-08 46/week @ 2024-03-15 34/week @ 2024-03-22 74/week @ 2024-03-29 26/week @ 2024-04-05

186 downloads per month
Used in 12 crates (7 directly)

MIT/Apache

14KB
169 lines

Project Goal

To provide a mechanism for upstream crates to collect information from downstream crates.

Use cases

Case 1, anonymous struct

Rust does not provide anonymous struct yet. To simulate this feature, we want to define the struct's fields and access to its value at the same place. The upstream crate providing anonymous struct simulation must know all the ad-hoc structs among its downstream crates source code, to define them before downstream crates start to compile.

Case 2, get rid of the multiple -sys crates

It would be nice if we have a unified method of compiling APIs from "the C world" instead of maintain multiple -sys crates. And same APIs which are defined in the same header files may be separated in different -sys crates, e.g. tcl_sys::TCL_OK and tk_sys::TCL_OK. Some crate such as cib tries provide a unified method to compile C libraries and provides a unified namespace clib::.

Information collected from downstream crates

Invoking inwelling::collect_downstream() will collect the following information from crates which called inwelling::to() in its build.rs.

  • Package name.

  • Metadata defined in Cargo.toml.

  • Manifest paths of Cargo.toml.

  • Source file paths(optional). Call collect_downstream() with the argument inwelling::Opt::dump_rs_paths == true to collect.

Quickstart

  1. The upstream crate e.g. crate foo calls inwelling::collect_downstream() in its build.rs and do whatever it want to generate APIs for downstream.

  2. The downstream crate e.g. crate bar calls inwelling::to() in its build.rs.

// build.rs
fn main() { inwelling::to( "foo" ); }

To send some metadata to upstream, encode them in Cargo.toml's package metadata.

[package.metadata.inwelling.foo]
answer = { type = "integer", value = "42" }

License

Under Apache License 2.0 or MIT License, at your will.

Dependencies

~0.4–0.8MB
~14K SLoC