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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
### UNRELEASED

### v0.10.0+v0.29.4
- Upgrade to [uniFFI 0.29.4](https://mozilla.github.io/uniffi-rs/latest/Upgrading.html) [#124](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/124)
- **BREAKING** Upgrade to [uniFFI 0.29.4](https://mozilla.github.io/uniffi-rs/latest/Upgrading.html) [#124](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/124)
- **BREAKING** Use Arrays instead of Lists for sequence collections [#137](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/137)
- Add support csharpier 1.0.0 [#116](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/116)
- Improve read/write operations [#131](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/131)
- Improve objects disposal [#128](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/128)
- Allow config file to be specified alongside --library [#119](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/119)

### v0.9.1+v0.28.3
- Add calling convention cdecl to DllImport
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ as a separate project from `uniffi-rs`, as per

# How to install

Minimum Rust version required to install `uniffi-bindgen-cs` is `1.81`.
Minimum Rust version required to install `uniffi-bindgen-cs` is `1.88`.
Newer Rust versions should also work fine.

```bash
Expand All @@ -25,10 +25,10 @@ Generates bindings file `path/to/definitions.cs`
To integrate the bindings into your projects, simply add the generated bindings file to your project.
There are a few requirements depending on your target framework version.

- .NET core `6.0` or higher
- .NET core `8.0` or higher
```xml
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
```
Expand Down