Closed jreyes33 closed 3 years ago
Hey! Thanks for the great crate and service!
Starting on version 0.1.16, there's an error when trying to install via cargo install tunnelto:
cargo install tunnelto
error[E0599]: no method named `json` found for struct `reqwest::Response` in the current scope
The error can also be reproduced by cloning the repo and running:
cd tunnelto cargo build
The fix was to enable the json feature on the reqwest dependency.
json
reqwest
Thanks @jreyes33! Interestingly, it builds when you build from within the workspace because the Cargo.toml pulls in the right reqwest features. Appreciate the report, will cargo release a 0.1.17 shortly...
Hey! Thanks for the great crate and service!
Starting on version 0.1.16, there's an error when trying to install via
cargo install tunnelto
:The error can also be reproduced by cloning the repo and running:
The fix was to enable the
json
feature on thereqwest
dependency.