diff --git a/Cargo.lock b/Cargo.lock index 5f3b152..605e15f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2254,6 +2254,7 @@ dependencies = [ "sha-1", "std_or_web", "steven_shared", + "tokio", ] [[package]] diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index 83f987c..5d6cb49 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -26,4 +26,5 @@ path = "../std_or_web" version = "0" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] +tokio = { version = "1", features = [ "rt", "net" ]} reqwest = { version = "0.11.4", features = [ "blocking" ]}