Using RethinkDB with Rust?
So i would like to use rethinkdb with my code since im familliar with it but even though there are things like
https://github.com/bchavez/RethinkDb.Driver
(and i know how to get the dll files off of that)
im not even sure where to begin to attempt to put that into rust to use it (if i even can)
so im hoping to know how i could use RethinkDB
the only thing i could think of would be to create an api with nodejs to handle things but i feel like thats not a great solution
Download the DLL (must be .NET Standard 2.0 or earlier) and then reference that DLL in your plugin by using:

// Reference: RethinkDb.Driver​

That would go at the top of the plugin.

where would the DLL file go?
RustDedicated_Data/Managed

(14:24:21) | Assembly referenced by Aquatic plugin does not exist: RethinkDb.Driver​.dll

(14:24:21) | Ignored unexpected plugin compilation failure: Aquatic

(14:24:21) | Added '// Reference: RethinkDb.Driver​' in plugin 'Aquatic'

(14:25:21) | Timed out waiting for plugin to be compiled: Aquatic

didnt work

Is RethinkDb.Driver.dll the name of the DLL you downloaded and installed under RustDedicated_Data/Managed?
yeah it is named exactly that
Which .NET version is the DLL for?

CCcNzB1.pngi downloaded the .NET standard 2.0 off of the NuGetPackageExplorer

Try the net45 one to see if it makes a difference.
nothing, same error

Merged post

got anything?
It may need a .NET 3.5 version.
I think you might be right about that,
oh well time to go figure out how to make a api with nodejs for it