zz
zz
add `no_std` support
This is used for converting type in FromRow.And I am not sure whether it is worth and just for discussing. ## Example ```rust #[derive(sqlx::FromRow)] struct Record { #[sqlx(try_from = "i64")]...
Just similar to [Itertools::group_by](https://docs.rs/itertools/latest/itertools/trait.Itertools.html#method.group_by) and can group items of the stream to vectors. ### Example ```rust let data_grouped = stream::iter(vec![1, 3, -2, -2, 1, 0, 1, 2]) .group_by(|elt| *elt >=...
Is there any plan to support `no_std` feature?
https://github.com/tomusdrw/rust-web3/issues/627 Firstly, run ganache `ganache-cli -b 3 -m "hamster coin cup brief quote trick stove draft hobby strong caught unable" --db ./db` * Test for request run example `cargo run...
Hello. When I use websocket transport for a period, it will report `WS connection error: Closed` error. And I see that there is a feature `WebSockets: Reconnecting & Pings` in...