Ilia Churin
Ilia Churin
In `iroha_config::base::derive`, the `view!` proc macro has to remove attributes unrelated to itself, such as `#[config]` or `#[builder]`. Ideally, this should be out of that macro's concern. As the number...
See [this](https://github.com/hyperledger/iroha/pull/2706#discussion_r964620027) and the following conversation.
See [comment](https://github.com/hyperledger/iroha/pull/2706#discussion_r970408105).
Due to some tests using config structs in `futures`, `iroha_config` had to be introduced as a dependency. Moving them out to an already-dependent crate instead would help decoupling
### Feature request Currently the `IdOrdEqHash` derive macro from #2476 requires an additional `id` attribute to be passed with the `Id` associated type for its `Identifiable` implementation. Instead, the type...
As discussed on a call with @appetrosyan and @Erigara, we want to move towards configuration which would not keep track of any configuration parameters that are common to all the...
### Feature request Replace `warp` crate to a more batteries included kind of web framework, main candidates being `axum` or `actix`. Do some researching/benchmark to determine what's better, if possible....