29 releases

0.3.2 Jul 30, 2023
0.3.0 Jan 8, 2023
0.2.9 Nov 21, 2022
0.2.3 Jul 24, 2022
0.1.7 Jun 6, 2020

#961 in Command line utilities

Download history 7/week @ 2023-12-11 68/week @ 2023-12-18 7/week @ 2023-12-25 22/week @ 2024-01-01 19/week @ 2024-01-08 24/week @ 2024-01-15 76/week @ 2024-01-22 30/week @ 2024-01-29 83/week @ 2024-02-05 21/week @ 2024-02-12 70/week @ 2024-02-19 96/week @ 2024-02-26 99/week @ 2024-03-04 56/week @ 2024-03-11 33/week @ 2024-03-18 50/week @ 2024-03-25

242 downloads per month

MIT license

29KB
514 lines

cargo-patch

Cargo-Patch is a Cargo Subcommand which allows patching dependencies using patch files.

Installation

Simply run:

cargo install cargo-patch

This is not necessary when patching via build.rs file

Usage

To patch a dependency one has to add the following to Cargo.toml:

[package.metadata.patch.serde]
version = "1.0"
patches = [
    "test.patch"
]

It specifies which dependency to patch (in this case serde) and one or more patchfiles to apply. Running:

cargo patch

will download the serde package specified in the dependency section to the target/patch folder and apply the given patches. To use the patched version one has to override the dependency using replace like this

[patch.crates-io]
serde = { path = './target/patch/serde-1.0.110' }

Instead of running cargo patch its also possible to add a build.rs file like this:

fn main() {
    println!("cargo:rerun-if-changed=Cargo.toml");
    println!("cargo:rerun-if-changed=patches/");
    cargo_patch::patch().expect("Failed while patching");
}

To make it work, add the cargo-patch library to the build-dependencies

[build-dependencies]
cargo-patch = "0.3"

Note, however, that all your patches should be in a single folder called patches or something similar. This is to make sure that the build script is executed again when something changes.

Patch format

You can either use diff or git to create patch files. Important is that file paths are relative and inside the dependency.

Using diff file generated by GitHub pull request

[package.metadata.patch.serde]
version = "1.0"
patches = [
    { path = "generatedByGithub.patch", source = "GithubPrDiff" },
    { path = "generatedByGithub2.patch", source = "GithubPrDiff" },
    "test.patch",
    "test2.patch"
]

Limitations

It's only possible to patch dependencies of binary crates as it is not possible for a subcommand to intercept the build process.

Dependencies

~57–93MB
~1.5M SLoC