| name | build-rust |
| description | Build Rust moq-ffi for iOS/Android targets |
Build Rust
All commands run from the moq-kit root directory.
iOS targets
cargo build --release --package moq-ffi --target aarch64-apple-ios
cargo build --release --package moq-ffi --target aarch64-apple-ios-sim
Android targets
cargo ndk -t arm64-v8a build --release --package moq-ffi
C bindings only (libmoq)
cargo build --release --package libmoq
Debug symbols
Use --profile release-with-debug instead of --release to include DWARF debug info.
Lint and test
mise run rust:check
mise run rust:fix