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 |
#154 in Build Utils
110 downloads per month
Used in 12 crates
(7 directly)
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
struct
s 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 argumentinwelling::Opt::dump_rs_paths == true
to collect.
Quickstart
-
The upstream crate e.g.
crate foo
callsinwelling::collect_downstream()
in itsbuild.rs
and do whatever it want to generate APIs for downstream. -
The downstream crate e.g.
crate bar
callsinwelling::to()
in itsbuild.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–7MB
~49K SLoC