From 46a5b1ec95928ccb4958f4295d51b0e693c16020 Mon Sep 17 00:00:00 2001 From: Henrik Date: Sun, 20 Jul 2025 22:36:00 +0200 Subject: [PATCH] Small documentation updates --- README.md | 3 ++- src/lib.rs | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 36c1e4903..8fd1b1438 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,5 @@ A friendly rust interface for [Apple's Core Audio API](https://developer.apple.c This crate aims to expose and wrap the functionality of the original C API in a zero-cost, safe, Rust-esque manner. -If you just want direct access to the unsafe bindings, use [coreaudio-sys](https://crates.io/crates/coreaudio-sys). +If you just want direct access to the Core Audio APIs, +use the appropriate crates of the [objc2 project](https://crates.io/crates/objc2). diff --git a/src/lib.rs b/src/lib.rs index 83a6e9e08..43bbed750 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,8 +5,9 @@ //! //! Read the CoreAudio Overview [here](https://developer.apple.com/library/mac/documentation/MusicAudio/Conceptual/CoreAudioOverview/Introduction/Introduction.html). //! -//! Currently, work has only been started on the [audio_unit](./audio_unit/index.html) module, but -//! eventually we'd like to cover at least the majority of the C API. +//! Currently, this crate provides the [audio_unit] module that covers the +//! [Audio Unit framework](https://developer.apple.com/documentation/audiounit) +//! (now part of [Audio Toolbox](https://developer.apple.com/documentation/AudioToolbox)). #[macro_use] extern crate bitflags;