| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-02-02 | std: move network code into `sys` | joboet | -543/+0 | |
| As per #117276, this PR moves `sys_common::net` and the `sys::pal::net` into the newly created `sys::net` module. In order to support #135141, I've moved all the current network code into a separate `connection` module, future functions like `hostname` can live in separate modules. I'll probably do a follow-up PR and clean up some of the actual code, this is mostly just a reorganization. | ||||
| 2024-08-05 | WASI fixing unsafe_op_in_unsafe_fn for std::{os, sys} | Georgii Rylov | -1/+1 | |
| 2024-03-12 | Allow dead code in sys/pal | Arthur Carcano | -0/+2 | |
| The dead_code lint was previously eroneously missing this dead code. Since this lint bug has been fixed, the unused field need to be removed or marked as `#[allow(dead_code)]`. These structures API is common to all platforms so the code cannot be removed and is hence marked allow(dead_code). | ||||
| 2024-01-29 | Clean dead code | r0cky | -3/+0 | |
| 2024-01-11 | std: begin moving platform support modules into `pal` | joboet | -0/+544 | |
