https://github.com/vurvdev/nanos-sdk-rs
Bindings to the nanos world sdk for Rust using bindgen
https://github.com/vurvdev/nanos-sdk-rs
bindgen ffi lua nanos-world rust sdk
Last synced: 12 days ago
JSON representation
Bindings to the nanos world sdk for Rust using bindgen
- Host: GitHub
- URL: https://github.com/vurvdev/nanos-sdk-rs
- Owner: vurvdev
- License: mit
- Archived: true
- Created: 2021-08-03T19:54:30.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-11-12T03:05:08.000Z (4 months ago)
- Last Synced: 2026-01-14T01:08:21.512Z (2 months ago)
- Topics: bindgen, ffi, lua, nanos-world, rust, sdk
- Language: Rust
- Homepage: https://crates.io/crates/nanos-sdk-rs
- Size: 1.95 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Archived
There's a few issues with this
- Nanos World keeps up with Lua and doesn't do anything particularly odd, so there's no real reason to use this over, say, [mlua](https://github.com/mlua-rs/mlua).
- The crate contains `-rs` in it which is a huge no-no.
- I won't be able to maintain this crate regardless
If anyone wants to create a better sdk, ensure you check those boxes above and go for it.
# ``nanos-sdk-rs`` [](https://github.com/Vurv78/nanos-sdk-rs/actions) [](https://vurv78.github.io/nanos-sdk-rs/nanos_sdk_rs/sdk/index.html) [](https://crates.io/crates/nanos-sdk-rs)
Bindings to https://github.com/nanos-world/module-sdk for Rust using bindgen.
See **[nanos world](https://www.nanos.world)**
> Please note that nanos world is in early development, so this could become unstable. Join the discord @ [discord.nanos.world](https://discord.nanos.world)
## Usage
Add this as a dependency to your `Cargo.toml`
```toml
[dependencies]
nanos-sdk-rs = "0.2.0"
```
Then add this to build your project to a .dll
```toml
[lib]
crate-type = ["cdylib"]
```