jqnatividad / qsv

CSVs sliced, diced & analyzed.
https://qsv.dathere.com
The Unlicense
2.45k stars 70 forks source link

BUG cargo fails on the M2 Mac #927

Closed ondohotola closed 1 year ago

ondohotola commented 1 year ago

On this command:

cargo install qsv --locked --features apply,generate,luau,fetch,foreach,to,full

I am getting this error

    Updating crates.io index
  Installing qsv v0.99.0
error: failed to compile `qsv v0.99.0`, intermediate artifacts can be found at `/var/folders/mp/9p6_x0pd27jdgcnrx6tx35tw0000gp/T/cargo-installBu44Nk`

Caused by:
  none of the selected packages contains these features: full, did you mean: jql?

Any advice?

jqnatividad commented 1 year ago

@ondohotola , the full feature has been renamed to feature_capable.

Try:

cargo install qsv --locked --features apply,generate,luau,fetch,foreach,to,feature_capable
ondohotola commented 1 year ago

That works, thanks