MiniExcelRust 0.1.0-preview.1
dotnet add package MiniExcelRust --version 0.1.0-preview.1
NuGet\Install-Package MiniExcelRust -Version 0.1.0-preview.1
<PackageReference Include="MiniExcelRust" Version="0.1.0-preview.1" />
<PackageVersion Include="MiniExcelRust" Version="0.1.0-preview.1" />
<PackageReference Include="MiniExcelRust" />
paket add MiniExcelRust --version 0.1.0-preview.1
#r "nuget: MiniExcelRust, 0.1.0-preview.1"
#:package MiniExcelRust@0.1.0-preview.1
#addin nuget:?package=MiniExcelRust&version=0.1.0-preview.1&prerelease
#tool nuget:?package=MiniExcelRust&version=0.1.0-preview.1&prerelease
MiniExcelRust
MiniExcelRust provides low-memory, high-performance XLSX queries for .NET by calling
MiniExcel for Rust through a small,
versioned C ABI.
This repository and package are experimental. The initial API supports synchronous, path-based dynamic XLSX queries.
Install
dotnet add package MiniExcelRust --prerelease
Usage
using MiniExcelLibs;
foreach (var row in MiniExcelRust.Query("input.xlsx", useHeaderRow: true))
{
Console.WriteLine(row["Name"]);
}
Rows are streamed in bounded batches across the native boundary. Disposing the enumerator early closes the native query handle.
Supported Platforms
| .NET RID | Operating system | Architecture | C library |
|---|---|---|---|
win-x64 |
Windows | x64 | MSVC |
win-arm64 |
Windows | arm64 | MSVC |
linux-x64 |
Linux | x64 | glibc |
linux-arm64 |
Linux | arm64 | glibc |
linux-musl-x64 |
Linux | x64 | musl |
linux-musl-arm64 |
Linux | arm64 | musl |
osx-x64 |
macOS | x64 | system |
osx-arm64 |
macOS | arm64 | system |
The NuGet package follows the standard .NET runtime asset convention and places each native
library under runtimes/{rid}/native/. .NET selects the matching asset at publish or run time.
Build and Test
Rust 1.85 and .NET SDK 8 or later are required.
Rust 1.85 is the source and release MSRV. The musl targets default to a static C runtime,
which cannot produce a cdylib, so their build disables crt-static and links dynamically
against musl before testing the package in Alpine.
cargo test --workspace --all-targets --locked
dotnet build ./src/MiniExcelRust/MiniExcelRust.csproj -c Release
./build/Test-Package.ps1 -Rid win-x64
Test-Package.ps1 builds the native library, packs MiniExcelRust, restores a separate
consumer from the local package feed, and executes an XLSX query smoke test.
Release
Version tags use the form v0.1.0-preview.1. The release workflow builds all eight native
assets, verifies the assembled package, tests it on native GitHub-hosted runners, and publishes
to NuGet.org through the protected release environment.
License
Apache-2.0
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.1.0-preview.1 | 49 | 9/5/2026 |