From 140d3d4892d607d1cc7f395166bb0d68e99a5641 Mon Sep 17 00:00:00 2001 From: Bryan Oltman Date: Mon, 26 Feb 2024 17:02:34 -0500 Subject: [PATCH] chore(patch): bump patch version --- patch/Cargo.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/patch/Cargo.toml b/patch/Cargo.toml index 4db6c87..43af329 100644 --- a/patch/Cargo.toml +++ b/patch/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "patch" -version = "0.1.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -12,7 +12,9 @@ bidiff = "1.0.0" pipe = "0.4.0" # comde is a wrapper around several compression libraries. # We only use zstd and could depend on it directly instead. -comde = {version = "0.2.3", default-features = false, features = ["zstandard"]} +comde = { version = "0.2.3", default-features = false, features = [ + "zstandard", +] } # Only used by string_patch tool: # I don't know how to make them per-target dependencies. @@ -21,4 +23,4 @@ comde = {version = "0.2.3", default-features = false, features = ["zstandard"]} # Only used by the string_patch tool for now. sha2 = "0.10.6" # For encoding hashes for Patch network responses. -hex = "0.4.3" \ No newline at end of file +hex = "0.4.3"