tokio-console: 0.1.9 -> 0.1.10

Diff: https://github.com/tokio-rs/console/compare/tokio-console-v0.1.9...tokio-console-v0.1.10
This commit is contained in:
Mario Rodas 2024-03-26 04:20:00 +00:00
parent e80d1b6300
commit 7940420063
2 changed files with 3 additions and 18 deletions

View File

@ -1,13 +0,0 @@
diff --git a/Cargo.lock b/Cargo.lock
index fcbe50c..27d4c30 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1390,7 +1390,7 @@ dependencies = [
[[package]]
name = "tokio-console"
-version = "0.1.8"
+version = "0.1.9"
dependencies = [
"atty",
"clap",

View File

@ -6,21 +6,19 @@
rustPlatform.buildRustPackage rec {
pname = "tokio-console";
version = "0.1.9";
version = "0.1.10";
src = fetchFromGitHub {
owner = "tokio-rs";
repo = "console";
rev = "tokio-console-v${version}";
hash = "sha256-zISgEhUmAfHErq4AelbnSwtKjtxYH//pbLUAlPKxQYk=";
hash = "sha256-sjfdxOeaNANYJuJMjZ/tCGc2mWM+98d8yPHAVSl4cF4=";
};
cargoHash = "sha256-qK8U6BZN7sdBP8CbzsDeewsGulNA/KFVS9vscBxysRg=";
cargoHash = "sha256-86KQpRpYSCQs6SUeG0HV26b58x/QUyovoL+5fg8JCOI=";
nativeBuildInputs = [ protobuf ];
cargoPatches = [ ./cargo-lock.patch ];
# uses currently unstable tokio features
RUSTFLAGS = "--cfg tokio_unstable";