Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ pubspec.lock
.flutter-plugins
.flutter-plugins-dependencies

# Melos
!/pubspec.lock

# Rust related
/target/
Cargo.lock
/Cargo.lock

.direnv/
16 changes: 0 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,6 @@ Packages with other changes:
- **DOCS**: update package description ([#13](https://github.com/GregoryConrad/native_toolchain_rs/issues/13)).
- **DOCS**: improve/clarify README ([#10](https://github.com/GregoryConrad/native_toolchain_rs/issues/10)).

## 0.1.1

- **FIX**: throw RustValidationException on bad toolchain, add unit tests ([#11](https://github.com/GregoryConrad/native_toolchain_rs/issues/11)).
- **FEAT**: improve exception help messages ([#12](https://github.com/GregoryConrad/native_toolchain_rs/issues/12)).
- **FEAT**: add exceptions to the public API ([#8](https://github.com/GregoryConrad/native_toolchain_rs/issues/8)).
- **DOCS**: add reference to (WIP) examples directory ([#14](https://github.com/GregoryConrad/native_toolchain_rs/issues/14)).
- **DOCS**: update package description ([#13](https://github.com/GregoryConrad/native_toolchain_rs/issues/13)).
- **DOCS**: improve/clarify README ([#10](https://github.com/GregoryConrad/native_toolchain_rs/issues/10)).


## 2025-09-23

Expand All @@ -57,10 +48,3 @@ Packages with other changes:
#### `native_toolchain_rs` - `v0.1.0`

- **BREAKING** **FEAT**: add working implementation.

## 0.1.0

> Note: This release has breaking changes.

- **BREAKING** **FEAT**: add working implementation.

14 changes: 14 additions & 0 deletions native_toolchain_rs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## 0.1.1

- **FIX**: throw RustValidationException on bad toolchain, add unit tests ([#11](https://github.com/GregoryConrad/native_toolchain_rs/issues/11)).
- **FEAT**: improve exception help messages ([#12](https://github.com/GregoryConrad/native_toolchain_rs/issues/12)).
- **FEAT**: add exceptions to the public API ([#8](https://github.com/GregoryConrad/native_toolchain_rs/issues/8)).
- **DOCS**: add reference to (WIP) examples directory ([#14](https://github.com/GregoryConrad/native_toolchain_rs/issues/14)).
- **DOCS**: update package description ([#13](https://github.com/GregoryConrad/native_toolchain_rs/issues/13)).
- **DOCS**: improve/clarify README ([#10](https://github.com/GregoryConrad/native_toolchain_rs/issues/10)).

## 0.1.0

> Note: This release has breaking changes.

- **BREAKING** **FEAT**: add working implementation.
1 change: 1 addition & 0 deletions native_toolchain_rs/LICENSE
1 change: 1 addition & 0 deletions native_toolchain_rs/README.md
File renamed without changes.
File renamed without changes.
File renamed without changes.
24 changes: 24 additions & 0 deletions native_toolchain_rs/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: native_toolchain_rs
description: >
Rust support for Dart's Native Assets.
Automatically builds and bundles your Rust code with your Dart code!
version: 0.1.1
homepage: https://github.com/GregoryConrad/native_toolchain_rs
repository: https://github.com/GregoryConrad/native_toolchain_rs
issue_tracker: https://github.com/GregoryConrad/native_toolchain_rs/issues
resolution: workspace

environment:
sdk: ^3.9.0

dependencies:
code_assets: ^0.19.6
hooks: ^0.20.1
logging: ^1.3.0
meta: ^1.17.0
path: ^1.9.1
toml: ^0.16.0

dev_dependencies:
mocktail: ^1.0.4
test: ^1.26.3
File renamed without changes.
Loading