Denis
Denis
Fixed, please install MSVC 2017 and try to compile.
I see the same issue here: https://github.com/ByteHeathen/libsip/issues/26
@yoshuawuyts Could you please provide a code snippet for these conversions? ```rust let socket = socket2::Socket::new( socket2::Domain::ipv4(), socket2::Type::stream(), Some(socket2::Protocol::tcp()), )?; socket.set_reuse_address(true)?; socket.set_linger(Some(Duration::from_secs(0)))?; socket.bind(&"0.0.0.0:0".parse::()?.into())?; // Convert and setup... ```
@yoshuawuyts But what if i need TcpStream? async-std has only static connect function. Tokio has tokio::net::TcpStream::from_std() for this purpose. ```rust socket.set_reuse_address(true)?; socket.set_linger(Some(Duration::from_secs(0)))?; socket.bind(&"0.0.0.0:0".parse::()?.into())?; let socket = socket.into_tcp_stream(); let stream: async_std::net::TcpStream...
Да, после НГ займусь как на работе время будет.
Можно попробовать, если есть возможность.
Думаю речь идет о https://packages.debian.org/ru/squeeze/i965-va-driver Проблемы с драйвером swrast так же легко находятся в гугле, решений много. Вы поставили драйвер для вашей видеокарты? Какая у вас видеокарта?
@fungiboletus Since I haven't heard back from the author, I decided not to proceed with a PR for now. However, if the author does reach out in the future, I'll...
Hey @lquerel, @fungiboletus I've created PRs for two different implementations. Let's decide which variant is best for us.
Yes, it is possible, but this approach does not work for all platforms, in the past one of my main tasks was to support Windows.