compio-rs / compio

A thread-per-core Rust runtime with IOCP/io_uring/polling.
MIT License
420 stars 37 forks source link

fix(driver,iocp): use Vec instead of ArrayVec #262

Closed Berrysoft closed 4 months ago

Berrysoft commented 4 months ago

The ArrayVec here is too large to copy. Use Vec instead.