Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 1.42 KB

File metadata and controls

43 lines (26 loc) · 1.42 KB

Contributing to the LaunchDarkly Transport library for Rust

LaunchDarkly has published an SDK contributor's guide that provides a detailed explanation of how our SDKs work. See below for additional information on how to contribute to this library.

Submitting bug reports and feature requests

The LaunchDarkly SDK team monitors the issue tracker in the library's repository. Bug reports and feature requests specific to this library should be filed in this issue tracker. The SDK team will respond to all newly filed issues within two business days.

Submitting pull requests

We encourage pull requests and other contributions from the community. Before submitting pull requests, ensure that all temporary or unintended code is removed. Don't worry about adding reviewers to the pull request; the LaunchDarkly SDK team will add themselves. The SDK team will acknowledge all pull requests within two business days.

Build instructions

This SDK uses the standard cargo build system.

Building

To build the library without running any tests:

cargo build

To check and report errors without compiling object files, run:

cargo check

Testing

To run all tests (unit, doc, etc), run:

cargo test

If you want to only run the much faster unit tests, run:

cargo test --lib