Downgrade tokio to avoid run-time error
``` thread 'main' panicked at 'there is no reactor running, must be called from the context of Tokio runtime', ~/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.22/src/io/driver/mod.rs:201:9 ```
Showing
+57 -21
... | ... | @@ -28,7 +28,7 @@ serde = { version = "1.0.117", features = ["derive"] } |
serde_json = "1.0.59" | ||
sha2 = "0.9.1" | ||
structopt = { version = "0.3.20", features = ["color"] } | ||
tokio = { version = "0.3.3", features = ["macros", "rt", "rt-multi-thread"] } | ||
tokio = { version = "0.2.22", features = ["full"] } | ||
warp = { version = "0.2.5", default-features = false, features = ["tls"] } | ||
[dev-dependencies] | ||
... | ... |
Please register or sign in to comment