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
- Host: GitHub
- URL: https://github.com/nurodev/crate-template
- Owner: NuroDev
- License: mit
- Created: 2022-04-08T01:42:33.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-08T02:08:54.000Z (about 3 years ago)
- Last Synced: 2024-10-06T08:41:37.505Z (8 months ago)
- Topics: portfolio, project-template, rust, rust-lang, template
- Language: Rust
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
📦
crate-template
Template repository to create a new Rust library crate
[](https://github.com/nurodev/crate-template/blob/main/LICENSE)
[](https://crates.io/crates/crate-template)
[](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
```