From 866d95541084eceb26e18d55661b64064ef61853 Mon Sep 17 00:00:00 2001 From: Enrique Ortiz Date: Wed, 4 Oct 2023 14:20:33 +0900 Subject: [PATCH] chore: missing deps --- .github/scripts/install_test_binaries.sh | 0 Cargo.toml | 16 +++++++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) mode change 100755 => 100644 .github/scripts/install_test_binaries.sh diff --git a/.github/scripts/install_test_binaries.sh b/.github/scripts/install_test_binaries.sh old mode 100755 new mode 100644 diff --git a/Cargo.toml b/Cargo.toml index 9d81a48c..94493c32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,12 +25,14 @@ serde_json = "1.0" # tracing tracing = "0.1.37" +tracing-subscriber = { version = "0.3.17", default-features = false } +tracing-futures = "0.2.5" tiny-keccak = { version = "2.0.2", default-features = false } sha2 = { version = "0.10.7", default-features = false, optional = true } md-5 = "0.10.5" -semver = { version = "1", features = ["serde"] } +semver = { version = "1.0", features = ["serde"] } walkdir = "2.3" once_cell = "1.18" regex = "1.9" @@ -59,6 +61,18 @@ svm = { package = "svm-rs", version = "0.3", default-features = false, features ], optional = true } svm-builds = { package = "svm-rs-builds", version = "0.2", optional = true } tokio = { version = "1.32", features = ["rt-multi-thread"] } +tokio-tungstenite = { version = "0.20", default-features = false } +futures = { version = "0.3.28", default-features = false, features = ["std"] } +futures-core = "0.3.28" +futures-util = "0.3.28" +futures-executor = "0.3.28" +futures-channel = "0.3.28" +futures-locks = { version = "0.7.1", default-features = false } +futures-timer = { version = "3.0.2", default-features = false, features = ["wasm-bindgen"] } +pin-project = "1.1" +reqwest = { version = "0.11.19", default-features = false } +url = { version = "2.4", default-features = false } + [dev-dependencies] criterion = { version = "0.5", features = ["async_tokio"] }