Skip to content

Commit 45a171e

Browse files
committed
docs: update outdated "native assets" terminology
1 parent fdea99c commit 45a171e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
---
88

9-
Rust support for Dart's Native Assets.
9+
Rust support for Dart's [build hooks](https://dart.dev/tools/hooks).
1010

1111
## Why native_toolchain_rust?
1212
1. It's opinionated.

native_toolchain_rust/lib/src/build_runner.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ interface class RustBuildRunner {
3636
required List<AssetRouting> assetRouting,
3737
}) async {
3838
logger
39-
..info('Starting build of Rust native assets')
39+
..info('Starting build of Rust code assets')
4040
..config(input)
4141
..config(Platform.environment);
4242

4343
if (!input.config.buildCodeAssets) {
4444
logger.info(
4545
'buildCodeAssets is false; '
46-
'skipping build of Rust native assets',
46+
'skipping build of Rust code assets',
4747
);
4848
return;
4949
}

native_toolchain_rust/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: native_toolchain_rust
22
description: >
3-
Rust support for Dart's Native Assets.
3+
Rust support for Dart's build hooks.
44
Automatically builds and bundles your Rust code with your Dart code!
55
version: 1.0.0
66
homepage: https://github.com/GregoryConrad/native_toolchain_rust

0 commit comments

Comments
 (0)