influxdb/mutable_buffer
Marco Neumann 40decd0154 fix: fix Rust 2021 compat warning
This fixes the following warning:

```text
warning: panic message is not a string literal
   --> mutable_buffer/src/table.rs:591:13
    |
591 |             format!("didn't match returned error: {:?}", response)
    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: `#[warn(non_fmt_panic)]` on by default
    = note: this is no longer accepted in Rust 2021
    = note: the panic!() macro supports formatting, so there's no need for the format!() macro here
help: remove the `format!(..)` macro call
    |
591 |             "didn't match returned error: {:?}", response
    |            --                                           --
```
2021-04-19 14:00:04 +02:00
..
src fix: fix Rust 2021 compat warning 2021-04-19 14:00:04 +02:00
Cargo.toml feat: basic snapshot caching (#1184) 2021-04-13 17:10:28 +00:00