#mongo-db #bindings #driver #ssl #built #top #mongoc

sys mongoc-sys

Sys package with installer and bindings for mongoc

24 releases (13 stable)

Uses old Rust 2015

1.22.0 Jul 2, 2022
1.22.0-2 Sep 5, 2023
1.22.0-1 Jul 7, 2023
1.17.5 Apr 22, 2021
1.3.0 Dec 19, 2015

#1766 in Database interfaces

Download history 20/week @ 2024-02-05 24/week @ 2024-02-12 20/week @ 2024-02-19 50/week @ 2024-02-26 15/week @ 2024-03-04 24/week @ 2024-03-11 8/week @ 2024-03-18 430/week @ 2024-04-01

465 downloads per month
Used in 3 crates (via mongo_driver)

MIT/Apache

21KB
303 lines

Mongo Rust Driver

Mongo Rust driver built on top of the Mongo C driver. This driver is a thin wrapper around the production-ready C driver that provides a safe and ergonomic Rust interface which handles all the gnarly usage details of the C driver for you.

Bson encoding and decoding is handled by the bson crate, the bindings are based on generated bindings by bindgen.

The API should still be considered experimental, but I'm not expecting changes at the moment.

Documentation

Compatibility

The driver currently only builds on Unix, tested on Mac Os X and Linux so far. It's compatible with MongoDB 2.6 up to 3.4 and has full replica set and SSL support.

Installation

If you have any trouble installing the crate (linking openssl can be tricky) please check out the installation instructions for the C driver.

To build on Mac install OpenSSL 1.1 and cmake:

brew install openssl@1.1
brew install cmake

Export these env vars the before you make a clean build:

export LDFLAGS="-L/usr/local/opt/openssl@1.1/lib"
export CPPFLAGS="-I/usr/local/opt/openssl@1.1/include"
export PKG_CONFIG_PATH="/usr/local/opt/openssl@1.1/lib/pkgconfig"

Logging

All internal logging by mongoc is redirected to the macros in the log crate. See the log docs to configure output in your application.

SSL test

There is a test included to connect to a replica set over SSL. To skip this test:

SKIP_SSL_CONNECTION_TESTS=true cargo test

To run this tests fill these environment variables with something appropiate to connect to a replica set:

MONGO_RUST_DRIVER_SSL_URI
MONGO_RUST_DRIVER_SSL_PEM_FILE
MONGO_RUST_DRIVER_SSL_CA_FILE

Examples

See the tests directory for examples of how to use the driver.

License

Licensed under either of

at your option.

Contribution

Contributions are very welcome, only the functionality we use has been wrapped so far. Please write a test for any behavior you add.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~330–590KB
~14K SLoC