Version updates and fix tests #410
Annotations
1 warning
useless conversion to the same type: `worker::Env`:
src/durable_object.rs#L77
warning: useless conversion to the same type: `worker::Env`
--> src/durable_object.rs:77:24
|
77 | let env: Env = self.env.clone().into();
| ^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `.into()`: `self.env.clone()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
= note: `#[warn(clippy::useless_conversion)]` on by default
|