Use the stable
rust compiler on windows
#1480
Labels
platform: windows
Anything `windows` platform related
type: tech debt
A code change that does not add user value.
Problem
Currently, we require the
nightly
rust compiler to compile vector on windows due to the need of thewindows_by_handle
feature rust-lang/rust#63010. This is our only blocker for using the stable compiler on window.Proposal
The
windows_by_handle
feature is only a couple of lines implemented inlibstd
and its is only a nightly feature to ensure the code can be stabilized intolibstd
. Because we don't have the same requirements we should vendor this code into vector in its own crate in thelib
directory. Doing this will allow us to use thestable
compiler.cc @a-rodin
The text was updated successfully, but these errors were encountered: