# Contributing to this library The source code for this library is [here](https://github.com/launchdarkly/rust-server-sdk-redis). We encourage pull-requests and other contributions from the community. Since this library is meant to be used in conjunction with the LaunchDarkly Rust SDK, you may want to look at the [Rust SDK source code](https://github.com/launchdarkly/rust-server-sdk) and our [SDK contributor's guide](http://docs.launchdarkly.com/docs/sdk-contributors-guide). ## Submitting bug reports and feature requests The LaunchDarkly SDK team monitors the [issue tracker](https://github.com/launchdarkly/rust-server-sdk-redis/issues) in this repository. Bug reports and feature requests specific to this project should be filed in the 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 ### Building To build the library without running any tests: ``` cargo build ``` ### Testing To build the library and run all unit tests: ``` cargo test ``` The tests expect you to have Redis running locally on the default port, 6379. One way to do this is with Docker: ``` docker run -d -p 6379:6379 redis ```