Add support for valuable to fixed hashes#642
Add support for valuable to fixed hashes#642marmistrz wants to merge 1 commit intoparitytech:masterfrom
Conversation
|
ping |
|
Hey @marmistrz. Could you clarify what you need this for exactly?
what kind of tracing are you doing? I'm hesitant to add yet another feature that will introduce unnecessary breaking changes to our crates unless it's really justified. |
|
This is not a breaking change: the trait implementation will only be used if the feature is enabled.
See https://tokio.rs/blog/2021-05-valuable Without this change it's impossible to use |
I meant that when There are requests to add other trait impls (e.g. #640) and at the moment, I'm trying to conservative and not add something unless it is really needed.
We already provide If there's consensus we do want to add support for |
|
I see. This implementation has to either be a part of |
Value::Stringwas used for the visit implementation, because it's the most convienient format to use while tracing, AFAIK being the main motivation for thevaluablecrate.