about summary refs log tree commit diff
path: root/library/std/src/os/darwin
AgeCommit message (Collapse)AuthorLines
2025-09-13initial implementation of the darwin_objc unstable featureJo Bates-0/+15
2024-11-27replace placeholder versionBoxy-1/+1
2024-08-13Make `std::os::darwin` publicMads Marquart-7/+15
This includes `std::os::darwin::fs`, which is re-exported under `std::os::macos::fs` and `std::os::ios::fs`. `std::os::darwin::raw` is not exposed, which means that `MetadataExt::as_raw_stat` isn't available on tvOS, visionOS and watchOS.
2024-07-29Reformat `use` declarations.Nicholas Nethercote-3/+2
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
2024-07-14Merge Apple `std::os` extensions modules into `std::os::darwin`Mads Marquart-0/+261
The functionality available on Apple platforms are very similar, and were duplicated for each platform. Additionally, this fixes a warning when compiling the standard library for tvOS, watchOS and visionOS by marking the corresponding code as dead code.