worace / geoq

Geospatial Utility Belt
MIT License
71 stars 8 forks source link

Installation requires nightly? #46

Closed BKDaugherty closed 2 years ago

BKDaugherty commented 2 years ago
error[E0554]: `#![feature]` may not be used on the stable release channel
 --> /home/brendon/.cargo/registry/src/github.com-1ecc6299db9ec823/geoq-0.0.22/src/main.rs:1:1
  |
1 | #![feature(try_blocks)]
  | ^^^^^^^^^^^^^^^^^^^^^^^

For more information about this error, try `rustc --explain E0554`.
error: could not compile `geoq` due to previous error
error: failed to compile `geoq v0.0.22`, intermediate artifacts can be found at `/tmp/cargo-installA3hv9G`

Resolved with (at least for my purposes)

rustup toolchain install nightly
rustup default nightly
cargo install geoq
worace commented 2 years ago

Yes it does require nightly. Sorry I thought I had this documented in the README but on closer inspection it seems i did not. Just added a note about it in the "Install" section. Thanks for taking a look!