diff --git a/src/de.rs b/src/de.rs index a739dcb..bf0eab5 100644 --- a/src/de.rs +++ b/src/de.rs @@ -139,6 +139,11 @@ fn parse_length(value: &[u8]) -> StdResult { .into()) } +/// Warning: This implementation is buggy in many cases except the most basic ones. +/// In these cases, it will panic when you try to `range` through your keys. +/// See [#33] for more information. This will be fixed in version 2.0. +/// +/// [#33]: https://github.com/CosmWasm/cw-storage-plus/issues/33 impl KeyDeserialize for (T, U) { type Output = (T::Output, U::Output);