tokio-console: 0.1.7 -> 0.1.9

authored by

Christoph Herzog and committed by
Anderson Torres
c96f76a2 cf795c35

+19 -3
+13
pkgs/development/tools/tokio-console/cargo-lock.patch
··· 1 + diff --git a/Cargo.lock b/Cargo.lock 2 + index fcbe50c..27d4c30 100644 3 + --- a/Cargo.lock 4 + +++ b/Cargo.lock 5 + @@ -1390,7 +1390,7 @@ dependencies = [ 6 + 7 + [[package]] 8 + name = "tokio-console" 9 + -version = "0.1.8" 10 + +version = "0.1.9" 11 + dependencies = [ 12 + "atty", 13 + "clap",
+6 -3
pkgs/development/tools/tokio-console/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "tokio-console"; 9 - version = "0.1.7"; 9 + version = "0.1.9"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "tokio-rs"; 13 13 repo = "console"; 14 14 rev = "tokio-console-v${version}"; 15 - sha256 = "sha256-yTNLKpBkzzN0X73CjN/UXRGjAGOnCCgJa6A6loA6baM="; 15 + hash = "sha256-zISgEhUmAfHErq4AelbnSwtKjtxYH//pbLUAlPKxQYk="; 16 16 }; 17 17 18 - cargoSha256 = "sha256-K/auhqlL/K6RYE0lHyvSUqK1cOwJBBZD3QTUevZzLXQ="; 18 + cargoHash = "sha256-qK8U6BZN7sdBP8CbzsDeewsGulNA/KFVS9vscBxysRg="; 19 19 20 20 nativeBuildInputs = [ protobuf ]; 21 + 22 + cargoPatches = [ ./cargo-lock.patch ]; 21 23 22 24 # uses currently unstable tokio features 23 25 RUSTFLAGS = "--cfg tokio_unstable"; ··· 32 34 meta = with lib; { 33 35 description = "A debugger for asynchronous Rust code"; 34 36 homepage = "https://github.com/tokio-rs/console"; 37 + mainProgram = "tokio-console"; 35 38 license = with licenses; [ mit ]; 36 39 maintainers = with maintainers; [ max-niederman ]; 37 40 };