graphql-engine/v3/crates/utils/json-ext
Samir Talwar 79074bef84 Idiomatic iteration patterns. (#632)
Fix some warnings flagged by Clippy.

1. Elide `.into_iter()` where it's unnecessary.
2. Favor `&` over `.iter()`.
3. Use `.values()` on maps instead of discarding keys by destructuring.
4. Avoid `::from_iter(…)` in favor of `.collect()`.

I also replaced a call to `.cloned()` with `.copied()`.

V3_GIT_ORIGIN_REV_ID: 7d39665b0cd04f5bae9405c0ff5f044f57433f32
2024-05-30 06:22:45 +00:00
..
src Idiomatic iteration patterns. (#632) 2024-05-30 06:22:45 +00:00
Cargo.toml Bump serde from 1.0.201 to 1.0.202 (#595) 2024-05-20 07:54:47 +00:00
README.md Move utils into json_ext crate (#555) 2024-05-10 12:28:01 +00:00

json_ext

Crate for extending serde_json functionality.