This project is not open for contributions at this time. If you have suggestions or feedback, please share them through Github Issues.
This section describes how to build and test Connector for Rust from source.
To build the crate from source, ensure you have Rust and Cargo installed. You can build the crate using Cargo:
cargo buildWhile tests can be run with cargo test, we use cargo-nextest.
You can install it with:
cargo install cargo-nextestOnce installed, you can run the tests with:
cargo nextest runWe use cargo-tarpaulin to measure code coverage.
You can install it with:
cargo install cargo-tarpaulinYou can then run it with:
cargo tarpaulin