Commit 1516e329 authored by Sizhe Zhao's avatar Sizhe Zhao Committed by Masum Reza
Browse files

gitoxide: 0.42.0 -> 0.44.0

parent 751159c4
Loading
Loading
Loading
Loading
+0 −24
Original line number Diff line number Diff line
diff -ur a/gix-packetline/Cargo.toml b/gix-packetline/Cargo.toml
--- a/gix-packetline/Cargo.toml
+++ b/gix-packetline/Cargo.toml
@@ -24,7 +24,7 @@
 ## If set, all IO will become blocking. The same types will be used preventing side-by-side usage of blocking and non-blocking IO.
 blocking-io = []
 ## Implement IO traits from `futures-io`.
-async-io = ["dep:futures-io", "dep:futures-lite", "dep:pin-project-lite"]
+async-io = ["dep:futures-io", "futures-lite", "dep:pin-project-lite"]
 
 #! ### Other
 ## Data structures implement `serde::Serialize` and `serde::Deserialize`.
diff -ur a/gix-protocol/Cargo.toml b/gix-protocol/Cargo.toml
--- a/gix-protocol/Cargo.toml
+++ b/gix-protocol/Cargo.toml
@@ -34,7 +34,7 @@
     "gix-transport/async-client",
     "dep:async-trait",
     "dep:futures-io",
-    "dep:futures-lite",
+    "futures-lite",
     "handshake",
     "fetch"
 ]
+5 −11
Original line number Diff line number Diff line
@@ -18,23 +18,17 @@ let
in
rustPlatform.buildRustPackage rec {
  pname = "gitoxide";
  version = "0.42.0";
  version = "0.44.0";

  src = fetchFromGitHub {
    owner = "GitoxideLabs";
    repo = "gitoxide";
    rev = "v${version}";
    hash = "sha256-hrCWt4cCnlH3NKH5Uugf/rvVN+YpbeZgZ/lhnQGZ2I0=";
    tag = "v${version}";
    hash = "sha256-TZK4H0PRxsjzDhW05bXD7GkP2JHrBb1tu/oid6GkAWs=";
  };

  useFetchCargoVendor = true;
  cargoHash = "sha256-q35MQGN/tvsK7gg0a/ljoVY6wedy7rwKlSakONgBIgk=";

  patches = [
    # TODO: remove after next update
    # https://github.com/GitoxideLabs/gitoxide/pull/1929
    ./fix-cargo-dependencies.patch
  ];
  cargoHash = "sha256-5kd9drLnejphmJ6KQ1jSmerIt+rRB4/rFKxhuedkpRk=";

  nativeBuildInputs = [
    cmake
@@ -62,7 +56,7 @@ rustPlatform.buildRustPackage rec {
  meta = with lib; {
    description = "Command-line application for interacting with git repositories";
    homepage = "https://github.com/GitoxideLabs/gitoxide";
    changelog = "https://github.com/GitoxideLabs/gitoxide/blob/v${version}/CHANGELOG.md";
    changelog = "https://github.com/GitoxideLabs/gitoxide/blob/${src.tag}/CHANGELOG.md";
    license = with licenses; [
      mit # or
      asl20