Himess
Himess
This PR updates deprecated `#[clap(...)]` attributes to their modern equivalents in `clap` 4.x. The current codebase still uses outdated syntax that has been deprecated since version 4.0. By making this...
## Description Updated `#[clap(...)]` attributes to `#[command(...)]` and `#[arg(...)]` where appropriate. This ensures compatibility with the latest `clap` versions and improves clarity in CLI argument definitions. ## Testing Performed Verified...
**Description** This PR updates deprecated `#[clap(...)]` attributes to their modern equivalents in `clap` 4.x. The current codebase still uses outdated syntax that has been deprecated since version 4.0. By making...
In **clap** version 4.x and above, the use of `#[clap(...)]` is no longer valid. Many instances of `#[clap(...)]` are still present in the project. These should be replaced with `#[arg(...)]`...
In **clap** version 4.x and above, the use of `#[clap(...)]` is no longer valid. Many instances of `#[clap(...)]` are still present in the project. These should be replaced with `#[arg(...)]`...
## Summary Closes #1052 This PR introduces a `normalized_cache` mechanism to the `UltraCircuitBuilder` to support memoization of normalized witness variables. ## Changes - Added `normalized_cache` as a member field in...
Closes #2826 Ref : https://github.com/EspressoSystems/espresso-network/pull/2827#issuecomment-2854372442 ### This PR: -Replaces deprecated `#[clap(...)]` attributes with the updated `#[arg(...)]`, `#[command(...)]`, and `#[arg(value_name = ...)]` formats throughout the codebase. -Cleans up redundant/default attributes such...
Many `#[clap(...)]` and `#[arg(...)]` attributes in the project are still using syntax deprecated since clap 4.0. This includes: `#[clap(...)]` → should be replaced with `#[command(...)]` or `#[arg(...)]` `#[arg(action)]` → removed,...
## Description This PR updates deprecated #[clap(...)] attributes to their modern equivalents in clap 4.x. The current codebase still uses outdated syntax that has been deprecated since version 4.0. By...
In **clap** version 4.x and above, the use of `#[clap(...)]` is no longer valid. Many instances of `#[clap(...)]` are still present in the project. These should be replaced with `#[arg(...)]`...