A DLL that handles communicating to the BazaarRealmAPI for the Bazaar Realm Skyrim mod
Go to file
Tyler Hallada 52b1a64d7e Defer writing to file cache to separate thread
This allows the plugin to get the data faster while the cache update continues in the background.
2020-11-07 00:34:09 -05:00
src Defer writing to file cache to separate thread 2020-11-07 00:34:09 -05:00
.gitignore Initial commit. Working get & post, needs cleanup 2020-10-12 20:19:48 -04:00
bindings.h Better error handling in create_transaction 2020-11-02 01:38:29 -05:00
build.rs Initial commit. Working get & post, needs cleanup 2020-10-12 20:19:48 -04:00
Cargo.lock Write metadata to file cache 2020-11-05 19:19:17 -05:00
Cargo.toml Write metadata to file cache 2020-11-05 19:19:17 -05:00
cbindgen.toml Better error handling in create_transaction 2020-11-02 01:38:29 -05:00
LICENSE Initial commit. Working get & post, needs cleanup 2020-10-12 20:19:48 -04:00
README.md Major refactor and clean up 2020-10-18 20:51:37 -04:00

BazaarRealmClient

A Rust DLL that handles making requests to the BazaarRealmAPI web server for the BazaarRealmPlugin, part of the Bazaar Realm Skyrim mod.

It uses reqwest to make requests to the API, deserializes the data with serde, and saves the responses to files in the Skyrim data directory to use as a local cache when the API server is unavailable.

cbindgen automatically generates the header file needed for the BazaarRealmPlugin (written in C++) to call into this DLL.

Related projects:

  • BazaarRealmAPI: API server for the mod that stores all shop data and what this client talks to
  • BazaarRealmPlugin: SKSE plugin for the mod that modifies data within the Skyrim game engine and calls the methods in this client
  • BazaarRealmMod: Papyrus scripts, ESP plugin, and all other resources for the mod