LukeMathWalker / cargo-px

A cargo subcommand that extends cargo's capabilities when it comes to code generation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cargo-px

Cargo Power eXtensions


Check out the announcement post to learn more about cargo-px and the problems it solves with respect to code generation in Rust projects.

Table of Contents

  1. How to install
  2. How to use
  3. Verify that the generated code is up-to-date
  4. License
  5. Known issues

How To Install

Check out the instructions in the release page

How to use

It is designed as a cargo proxy: instead of invoking cargo <CMD> <ARGS>, you go for cargo px <CMD> <ARGS>. For example, you go for cargo px build --all-features instead of cargo build --all-features.

cargo px examines your workspace every time you invoke it.
If any of your crates needs to be generated, it will invoke the respective code generators before forwarding the command and its arguments to cargo.

cargo px leverages the metadata section.
In the crate that you want to see generated, you fill in the [package.metadata.px.generate] section as follows:

[package]
name = "..."
version = "..."
# [...]

[package.metadata.px.generate]
# The generator is a binary in the current workspace. 
# It's the only generator type we support at the moment.
generator_type = "cargo_workspace_binary"
# The name of the binary.
generator_name = "bp"
# The arguments to be passed to the binary. 
# It can be omitted if there are no arguments.
generator_args = ["--quiet", "--profile", "optimised"]

cargo-px will detect the configuration and invoke cargo run --bin bp -- --quiet --profile="optimised" for you.
If there are multiple crates that need to be code-generated, cargo-px will invoke the respective code-generators in an order that takes into account the dependency graph (i.e. dependencies are always code-generated before their dependents).

cargo-px will also set two environment variables for the code generator:

  • CARGO_PX_GENERATED_PKG_MANIFEST_PATH, the path to the Cargo.toml file of the crate that needs to be generated;
  • CARGO_PX_WORKSPACE_ROOT_DIR, the path to the Cargo.toml file that defines the current workspace (i.e. the one that contains the [workspace] section).

You can use the cargo_px_env crate to retrieve and work with these environment variables.

Verify that the generated code is up-to-date

If you are committing the generated code, it might be desirable to verify in CI that it's up-to-date.
You can do so by invoking cargo px verify-freshness.
It will only work if you define a verifier for every code-generated project in your workspace:

[package]
name = "..."
version = "..."
# [...]

[package.metadata.px.verify]
# The verifier is a binary in the current workspace. 
# It's the only verifier type we support at the moment.
verifier_type = "cargo_workspace_binary"
# The name of the binary.
verifier_name = "bp"
# The arguments to be passed to the binary. 
# It can be omitted if there are no arguments.
verifier_args = ["--verify"]

cargo-px will detect the configuration and invoke cargo run --bin bp -- --verify" for you.
The generated package is considered up-to-date if the verifier invocation returns a 0 status code.

If there are multiple crates that need to be verified, cargo-px will invoke the respective verifier in an order that takes into account the dependency graph (i.e. dependencies are always code-generated before their dependents).

cargo-px will also set two environment variables for the verifier:

  • CARGO_PX_GENERATED_PKG_MANIFEST_PATH, the path to the Cargo.toml file of the generated crate;
  • CARGO_PX_WORKSPACE_ROOT_DIR, the path to the Cargo.toml file that defines the current workspace (i.e. the one that contains the [workspace] section).

You can use the cargo_px_env crate to retrieve and work with these environment variables.

Known issues

MacOS

If you're using a macOS machine, you probably want to disable gatekeeper notarisation for your terminal.

Every time you execute a binary for the first time, Apple executes a request over the network to their servers. This becomes an issue for cargo-px, since it must compile your generator and then execute it: the generator binary is "new", therefore it incurs the penalty of this notarisation check.
The magnitude of the delay depends on the quality of your connection as well as on Apple's servers performance. On a good Internet connection, I consistenly observed 100/150ms delays, but delays in the order of seconds have been reported as well.
Fun aside: if you're working without an Internet connection, Apple skips the check entirely and lets you execute unverified binaries without any complaint.

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option. Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

A cargo subcommand that extends cargo's capabilities when it comes to code generation.

License:Apache License 2.0


Languages

Language:Rust 100.0%