A particularly important change has been made to the compiler crate which now references the Future trait directly from std rather than it's re-export through the futures crate, meaning that downstream crates can also move away from having a direct dependency on futures.
Reduces dependency graph of each crate:
A particularly important change has been made to the
compiler
crate which now references theFuture
trait directly fromstd
rather than it's re-export through the futures crate, meaning that downstream crates can also move away from having a direct dependency onfutures
.