# Contributing to CowIRC
Thank you for contributing to CowIRC! Your efforts are greatly appreciated. All source code must be licensed [GNU GPL3](https://www.gnu.org/licenses/gpl-3.0.en.html) and all documentation must be licensed [GNU FDL](https://www.gnu.org/licenses/fdl-1.3.html). For any source code files, please include a copyright header as follows:
```rust
// This file is part of CowIRC.
//
// CowIRC is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// CowIRC is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with CowIRC. If not, see <http://www.gnu.org/licenses/>.
```
## Patches
Patches are to be sent to `detox07_wash@icloud.com`. After making your changes, simply use `git diff | tee 001_foobar.patch`, naming your patch appropriately.
## Coding Style
All code must be formatted using [rustfmt](https://github.com/rust-lang/rustfmt). A configuration for your text editor is provided in `.editorconfig`.