near / cargo-near

Cargo extension for building Rust smart contracts on NEAR
Apache License 2.0
34 stars 17 forks source link

Duplicate warnings #67

Closed miraclx closed 2 years ago

miraclx commented 2 years ago

Using cargo near to occasionally build a contract while in active development can be a bit noisy, since both the step that aids ABI extraction and the step that does the actual contract compilation both invoke rustc, which reports the same warnings.

It's different for errors because it fails at the first pass.

Only relevant after #65.

CleanShot 2022-10-15 at 11 57 47@2x
itegulov commented 2 years ago

Hmm, I wonder: should we hide warnings while generating ABI?

miraclx commented 2 years ago

Yeah, that's reasonable to me.