1. Hello, I'm quite new to Rust development, I am trying to use MongoDB in my plugins, I've downloaded the mongo drivers manually and dropped them in the server's Managed dir, the server can see the dll's but those dll's depend on other dll's. What is the best way to install drivers into a rust server?

    hastebin
     
  2. What do you need MongoDB for? If you're really needing a document store then chances are you want to store this data somewhere other than the instance itself. Maybe you'd be better off having a remote server running your DB and making API calls to it?
     
  3. The db is remote i'm trying to use a Mongo client to connect to it
     
  4. You may be able to get what you want going this route, but I would suggest abstracting your database logic away into a web service and making HTTP calls to that for simplicity's sake.
     
  5. Yea I've been thinking of making a Rest API but I just didn't see the need since the database is on the same server as the rust instance.