An open API service indexing awesome lists of open source software.

https://github.com/nurodev/crate-template

📦 Template repository to create a new Rust library crate
https://github.com/nurodev/crate-template

portfolio project-template rust rust-lang template

Last synced: 2 months ago
JSON representation

📦 Template repository to create a new Rust library crate

Awesome Lists containing this project

README

        







📦


crate-template












Template repository to create a new Rust library crate



[![License](https://img.shields.io/crates/l/crate-template?label=%20&style=for-the-badge)](https://github.com/nurodev/crate-template/blob/main/LICENSE)
[![Version](https://img.shields.io/crates/v/crate-template?label=%20%20&style=for-the-badge)](https://crates.io/crates/crate-template)
[![Total Downloads](https://img.shields.io/crates/d/crate-template?label=%20&logo=docusign&logoColor=white&style=for-the-badge)](https://crates.io/crates/crate-template)






## 🚀 Install

Add the crate to your projects `Cargo.toml`:

```toml
[dependencies]
crates-template = "0.1.1"
```

## 🦄 Usage

```rust
use crates_template::{multiply};

let combined = multiply(2, 3);
assert_eq!(combined, 6); // true
```