|
||
---|---|---|
.github/workflows | ||
src | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
CONTRIBUTING.md | ||
flake.lock | ||
flake.nix | ||
LICENSE | ||
README.md | ||
rustfmt.toml | ||
uniffi.toml |
servicepoint-binding-uniffi
In CCCB, there is a big pixel matrix hanging on the wall. It is called "Service Point Display" or "Airport Display".
This crate contains bindings for multiple programming languages, enabling non-rust-developers to use the library.
Also take a look at the main project README for more information.
Supported languages
Language | Support level | Repo | Notes |
---|---|---|---|
.NET (C#) | Full | servicepoint-binding-csharp | see dedicated section |
Ruby | Working | LD_LIBRARY_PATH has to be set, see example project | |
Python | Tested once | Required project file not included. The shared library will be loaded from the script location. | |
Go | untested | Code generation works | |
Kotlin | untested | Code generation works | |
Swift | untested | Code generation works |
Note on stability
This library is still in early development. You can absolutely use it, and it works, but expect minor breaking changes with every version bump.
Notes on differences to rust library
- Performance will not be as good as the rust version:
- most objects are reference counted.
- objects with mutating methods will also have a MRSW lock
- You will not get rust backtraces in release builds of the native code
- Panic messages will work (PanicException)