risc0 / risc0-ethereum

Integration of the RISC Zero verifiable compute platform with Ethereum and EVM chains.
https://risczero.com
Apache License 2.0
60 stars 15 forks source link

WEB3-80: Drop `no-default-features` when installing `cargo-risczero` #198

Closed capossele closed 3 weeks ago

capossele commented 3 weeks ago

This should fix:

error[E0599]: no method named `env` found for struct `Arg` in the current scope
  --> risc0/cargo-risczero/src/commands/datasheet/mod.rs:41:38
   |
41 |     #[arg(long, value_name = "PATH", env = "RISC0_SERVER_PATH")]
   |                                      ^^^ method not found in `Arg`

Note that this behaviour started after merging https://github.com/risc0/risc0/pull/2196, that introduced the env usage in claps without adding the env feature

nategraf commented 3 weeks ago

We should be sending this issue to the risc0 repo instead of changing behavior here.

capossele commented 3 weeks ago

Alright, I moved that in risc0: https://github.com/risc0/risc0/pull/2254

Closing here for the moment