https://github.com/deadblackclover/fsharp-native-dll
Example of using native libraries in F#
https://github.com/deadblackclover/fsharp-native-dll
dll fsharp native rust zig
Last synced: 8 months ago
JSON representation
Example of using native libraries in F#
- Host: GitHub
- URL: https://github.com/deadblackclover/fsharp-native-dll
- Owner: deadblackclover
- License: mit
- Created: 2025-02-02T06:53:32.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-16T07:16:39.000Z (over 1 year ago)
- Last Synced: 2025-05-07T15:08:29.771Z (about 1 year ago)
- Topics: dll, fsharp, native, rust, zig
- Language: Zig
- Homepage:
- Size: 12.7 KB
- Stars: 11
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# fsharp-native-dll
Example of using native libraries in F#
### Build native_rust
```sh
cargo build
```
### Build native_zig
Use version 0.13.0 to compile the library
```sh
zig build
```
### Build native_fsharp
```sh
dotnet publish -c Release -r --self-contained
```