mirror of
https://github.com/exo-explore/exo.git
synced 2026-04-18 04:52:40 -04:00
VecExt added a .map() convenience method on Vec<T> that simply called .into_iter().map(f).collect(). This thin wrapper provided no optimisation benefit and obscured a standard iterator pattern behind a nightly feature gate and an extra dependency. Replaced the single call site in exo_pyo3_bindings with the equivalent iterator chain and removed the ext module, the extend dependency, and the trait_alias feature gate from the util crate. Test plan: - CI
16 lines
201 B
TOML
16 lines
201 B
TOML
[package]
|
|
name = "util"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
publish = false
|
|
|
|
[lib]
|
|
doctest = false
|
|
name = "util"
|
|
path = "src/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|