Merge pull request #197202 from xanderio/tokio-console-0.1.7

tokio-console: 0.1.3 -> 0.1.7

authored by

Robert Scott and committed by
GitHub
ce82c673 99547087

+13 -4
+13 -4
pkgs/development/tools/tokio-console/default.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "tokio-console"; 9 - version = "0.1.3"; 9 + version = "0.1.7"; 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-v9BxfBLRJug/1AgvDV7P5AOXwZfCu1mNgJjhbipoZNg="; 15 + sha256 = "sha256-yTNLKpBkzzN0X73CjN/UXRGjAGOnCCgJa6A6loA6baM="; 16 16 }; 17 17 18 - cargoSha256 = "sha256-584EC9x7tJE3pHqgQVh6LWKuCgLXuBBEnaPvo1A8RIs="; 18 + cargoSha256 = "sha256-K/auhqlL/K6RYE0lHyvSUqK1cOwJBBZD3QTUevZzLXQ="; 19 19 20 20 nativeBuildInputs = [ protobuf ]; 21 21 22 + # uses currently unstable tokio features 23 + RUSTFLAGS = "--cfg tokio_unstable"; 24 + 25 + checkFlags = [ 26 + # tests depend upon git repository at test execution time 27 + "--skip bootstrap" 28 + "--skip config::tests::args_example_changed" 29 + "--skip config::tests::toml_example_changed" 30 + ]; 31 + 22 32 meta = with lib; { 23 33 description = "A debugger for asynchronous Rust code"; 24 34 homepage = "https://github.com/tokio-rs/console"; ··· 26 36 maintainers = with maintainers; [ max-niederman ]; 27 37 }; 28 38 } 29 -